using System; using System.Collections.Generic; namespace CaoCao.Editor { [Serializable] public class BuildBundle { public int id; public int[] deps = Array.Empty(); public string group; public string hash; public string file; public ulong size; public List assets = new List(); public bool raw; } }