mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-27 04:30:12 +08:00
11 lines
308 B
C#
11 lines
308 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; }
|
|
}
|
|
} |