2021-05-25 09:04:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EZPPClient_Installer
|
|
|
|
|
{
|
|
|
|
|
class MD5File
|
|
|
|
|
{
|
|
|
|
|
|
2021-05-27 04:08:55 +00:00
|
|
|
|
public string MD5 { get; set; }
|
2021-05-25 09:04:08 +00:00
|
|
|
|
|
2021-05-27 04:08:55 +00:00
|
|
|
|
public string Name { get; set; }
|
2021-05-25 09:04:08 +00:00
|
|
|
|
|
2021-05-27 04:08:55 +00:00
|
|
|
|
public MD5File(string name, string md5)
|
2021-05-25 09:04:08 +00:00
|
|
|
|
{
|
2021-05-27 04:08:55 +00:00
|
|
|
|
this.MD5 = md5;
|
|
|
|
|
this.Name = name;
|
2021-05-25 09:04:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|