赖素文
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System.Collections.Generic;
using System.IO;
namespace Hh.Mes.POJO.ViewModel
{
public class FileLogVM
{
/// <summary>
/// 目录名称
/// </summary>
public string DirectoryName { get; set; }
/// <summary>
/// 文件列表
/// </summary>
public List<FileItems> FileNames { get; set; } = new List<FileItems>();
}
public class FileItems
{
public string FileName { get; set; }
public string FileSize { get; set; }
}
}
|