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