This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace IBKLinker_Minio.Entity.MinioController
{
/// <summary>
/// 文件上传标准清单model
/// </summary>
public class StandardListGenerationModel
/// 清单名称
public string InventoryName { get; set; }
/// 清单类型 0为标准类型一个单一文件夹的清单,1为特殊模式多个文件夹的清单
public string InventoryType { get; set; }
/// 开始时间
public string BeginTime { set; get; }
/// 结束时间
public string EndTime { set; get; }
}