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

31 lines
822 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.

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace Thousandto.Update.Data
{
/// <summary>
/// 打包的资源,二进制文件内部文件结构
/// 一个文件包含信息有: 路径长度, 文件名, md5长度 文件大小,路径, md5值
/// </summary>
public class ResourceFileData
{
//路径长度
public int DirLen { get; set; }
//文件名
public int NameLen { get; set; }
//md5长度32位
public int Md5Len { get; set; }
//文件大小
public long FileSize { get; set; }
//路径
public string Dir { get; set; }
//文件名
public string Name { get; set; }
//md5值
public string Md5 { get; set; }
}
}