Files
lightsetup/LightSetupMd5/Md5FileInfo.cs
2023-05-22 09:29:58 +08:00

28 lines
592 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LightSetupMd5
{
internal class Md5FileInfo
{
public Md5FileInfo() { }
public Md5FileInfo(string md5, string path)
{
this.Md5 = md5;
this.AbsolutePath = path;
}
/// <summary>
/// MD5文件名
/// </summary>
public string Md5 { get; set; }
/// <summary>
/// 相对路径
/// </summary>
public string AbsolutePath { get; set; }
}
}