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>
/// 查询minio文件文件夹路径model(包括模糊查询文件名称以及根据时间查询)
/// </summary>
/// <returns></returns>
public class GetStoragePathModel
/// 文件名称
public string FileName { get; set; }
///子文件夹的父ID
public int Pk { get; set; }
/// 开始时间
public string BeginTime { set; get; }
/// 结束时间
public string EndTime { set; get; }
}