27 lines
741 B
C#
27 lines
741 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebDoorCreator.Data.DTO
|
|
{
|
|
/// <summary>
|
|
/// COmpany 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 int status { get; set; } = 0;
|
|
|
|
}
|
|
}
|