Files
Archive/v2rayn/v2rayN/ServiceLib/Models/CheckUpdateItem.cs
2024-09-04 20:31:12 +02:00

11 lines
307 B
C#

namespace ServiceLib.Models
{
public class CheckUpdateItem
{
public bool? isSelected { get; set; }
public string coreType { get; set; }
public string? remarks { get; set; }
public string? fileName { get; set; }
public bool? isFinished { get; set; }
}
}