moved Classes
This commit is contained in:
23
EZPPClient Installer/Models/MD5File.cs
Normal file
23
EZPPClient Installer/Models/MD5File.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
{
|
||||
|
||||
public string MD5 { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public MD5File(string name, string md5)
|
||||
{
|
||||
this.MD5 = md5;
|
||||
this.Name = name;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user