mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-14 12:29:13 +00:00
10 lines
273 B
C#
10 lines
273 B
C#
namespace ServiceLib.Models;
|
|
|
|
public class CheckUpdateModel
|
|
{
|
|
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; }
|
|
}
|