20 lines
343 B
C#
20 lines
343 B
C#
namespace WebUI.Model
|
|
{
|
|
public class SendFileLuncher
|
|
{
|
|
|
|
public int Filenumber { get; set; }
|
|
|
|
public string LuncherVer { get; set; }
|
|
|
|
public string filename { get; set; }
|
|
|
|
public string HexStart { get; set; }
|
|
|
|
public string md5 { get; set; }
|
|
public string data { get; set; }
|
|
|
|
|
|
}
|
|
}
|