namespace Dpz.Core.Service.ObjectStorage;

public class FolderResult
{
    public FileType FileType { get; set; }

    public DateTime LastUpdateTime { get; set; }

    public required string Name { get; init; }

    public long? Size { get; set; }
}

public enum FileType
{
    File,

    Directory,
}
评论加载中...