moved Classes

This commit is contained in:
2021-05-27 11:34:43 +02:00
parent ff43c77b2e
commit 23b5e76bb1
2 changed files with 0 additions and 0 deletions

View 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;
}
}
}