added more fucking stuff that i dont know how it works
This commit is contained in:
33
EZPPClient Installer/MD5File.cs
Normal file
33
EZPPClient Installer/MD5File.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user