Files
TEngine/UnityProject/Packages/YooAsset/Runtime/CacheSystem/CacheFileInfo.cs
ALEXTANG a2255b80cd 更新demo
更新demo
2024-03-18 15:35:15 +08:00

19 lines
547 B
C#

namespace YooAsset
{
public class CacheFileInfo
{
public string RemoteFileName { private set; get; }
public string FilePath { private set; get; }
public string FileCRC { private set; get; }
public long FileSize { private set; get; }
public CacheFileInfo(string remoteFileName, string filePath, string fileCRC, long fileSize)
{
RemoteFileName = remoteFileName;
FilePath = filePath;
FileCRC = fileCRC;
FileSize = fileSize;
}
}
}