Represents a collection of Asset 's.
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebCache
{
public class Bundle
{
public string Name { get; set; }
public List<Asset> Assets { get; set; }
}
}
|