Refactor check updates

This commit is contained in:
2dust
2024-09-01 16:39:45 +08:00
parent d6ca317b20
commit f0d05a7d4e
10 changed files with 541 additions and 39 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}