mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-26 16:38:40 +03:00
11 lines
307 B
C#
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; }
|
|
}
|
|
} |