29 lines
852 B
C#
29 lines
852 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// File data DTO
|
|
/// </summary>
|
|
[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;
|
|
|
|
}
|
|
}
|