28 lines
592 B
C#
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; }
|
|
}
|
|
}
|