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; }
|
|
}
|
|
} |