Files
Main/Assets/Plugins/References/FuncellUpdate/UpdateModel/Data/InAppFileData.cs
2025-01-25 04:38:09 +08:00

13 lines
296 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Thousandto.Update.Data
{
/// <summary>
/// 包内文件信息路径、md5、size
/// </summary>
public class InAppFileData
{
public string RelativePath { get; set; }
public string Md5 { get; set; }
public int Size { get; set; }
}
}