using System; using System.Collections; using System.Collections.Generic; namespace YooAsset.Editor { [Serializable] public class ReportRedundancyInfo { /// /// 资源路径 /// public string AssetPath; /// /// 资源类型 /// public string AssetType; /// /// 资源GUID /// 说明:Meta文件记录的GUID /// public string AssetGUID; /// /// 资源文件大小 /// public long FileSize; /// /// 冗余的资源包数量 /// public int Number; } }