mirror of
https://github.com/casksteven/Sweaty-Launcher.git
synced 2024-06-24 21:09:27 +00:00
22 lines
410 B
C#
22 lines
410 B
C#
using System;
|
|
|
|
namespace Launcher.Model
|
|
{
|
|
[Obsolete]
|
|
public class PkgVersionItem
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string remoteName { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string md5 { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int fileSize { get; set; }
|
|
|
|
}
|
|
}
|