using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using static WebDoorCreator.Core.Enum; namespace WebDoorCreator.Data.DTO { /// /// File data DTO /// [Serializable] public class FileDTO { //public string HwCode { get; set; } = ""; public string FileBaseDir { get; set; } = ""; //public string FileAbsPath { get; set; } = ""; public string FileRelPath { get; set; } = ""; public string FileMD5 { get; set; } = ""; public long FileDim { get; set; } = 0; public DateTime lastModTime { get; set; } = DateTime.Now; public fileStatus status { get; set; } = fileStatus.none; public bool action { get; set; } = false; } }