EZPPClient-Installer/EZPPClient Installer/MD5File.cs

34 lines
487 B
C#
Raw Normal View History

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