added more fucking stuff that i dont know how it works

This commit is contained in:
2021-05-25 11:04:08 +02:00
parent 6892bc2a47
commit f9a593f234
6 changed files with 149 additions and 24 deletions

View File

@@ -0,0 +1,33 @@
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
{
private string md5;
private string name;
public MD5File(string name, string md5)
{
this.md5 = md5;
this.name = name;
}
public string getName()
{
return name;
}
public string getMD5()
{
return md5;
}
}
}