EZPPClient-Installer/EZPPClient Installer/Models/MD5File.cs

17 lines
240 B
C#

namespace EZPPClient_Installer
{
class MD5File
{
public string MD5 { get; set; }
public string Name { get; set; }
public MD5File(string name, string md5)
{
this.MD5 = md5;
this.Name = name;
}
}
}