17 lines
375 B
C#
17 lines
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.Common.DTO
|
|
{
|
|
public class LogFileDTO
|
|
{
|
|
public string Id { get; set; }
|
|
public string FileName { get; set; }
|
|
public string FileSize { get; set; }
|
|
public string CreateDate { get; set; }
|
|
}
|
|
}
|