2026-05-11 03:00:19 +00:00
|
|
|
namespace ServiceLib.Models.Dto;
|
2025-04-02 03:44:23 +00:00
|
|
|
|
2025-09-10 11:43:11 +00:00
|
|
|
public class CheckUpdateModel : ReactiveObject
|
2024-09-01 08:39:45 +00:00
|
|
|
{
|
2025-04-02 03:44:23 +00:00
|
|
|
public bool? IsSelected { get; set; }
|
2026-05-18 09:32:07 +00:00
|
|
|
public ECoreType? CoreType { get; set; }
|
2025-09-10 11:43:11 +00:00
|
|
|
[Reactive] public string? Remarks { get; set; }
|
2025-04-02 03:44:23 +00:00
|
|
|
public string? FileName { get; set; }
|
|
|
|
|
public bool? IsFinished { get; set; }
|
2026-05-18 09:32:07 +00:00
|
|
|
public bool IsGeoFile { get; set; }
|
|
|
|
|
public string CoreTypeForStorage => IsGeoFile ? "GeoFiles" : (CoreType?.ToString() ?? "");
|
2025-04-02 03:44:23 +00:00
|
|
|
}
|