mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 01:00:51 +08:00
29 lines
606 B
C#
29 lines
606 B
C#
|
|
namespace Yi.Framework.Rbac.Domain.Shared.Caches;
|
||
|
|
|
||
|
|
public class FileCacheItem
|
||
|
|
{
|
||
|
|
public Guid Id { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 文件大小
|
||
|
|
///</summary>
|
||
|
|
public decimal FileSize { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 文件名
|
||
|
|
///</summary>
|
||
|
|
public string FileName { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 文件路径
|
||
|
|
///</summary>
|
||
|
|
public string FilePath { get; set; }
|
||
|
|
|
||
|
|
public DateTime CreationTime { get; set; }
|
||
|
|
|
||
|
|
public Guid? CreatorId { get; set; }
|
||
|
|
|
||
|
|
public Guid? LastModifierId { get; set; }
|
||
|
|
|
||
|
|
public DateTime? LastModificationTime { get; set; }
|
||
|
|
}
|