Files
Yi.Admin/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Dictionary/DictionaryGetOutputDto.cs

20 lines
678 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
using Volo.Abp.Application.Dtos;
2023-04-15 17:33:42 +08:00
2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Dictionary
2023-04-15 17:33:42 +08:00
{
2023-12-11 09:55:12 +08:00
public class DictionaryGetOutputDto : EntityDto<Guid>
2023-04-15 17:33:42 +08:00
{
public DateTime CreationTime { get; set; } = DateTime.Now;
2023-12-11 09:55:12 +08:00
public Guid? CreatorId { get; set; }
2023-04-15 17:33:42 +08:00
public string? Remark { get; set; }
public string? ListClass { get; set; }
public string? CssClass { get; set; }
public string DictType { get; set; } = string.Empty;
public string? DictLabel { get; set; }
public string DictValue { get; set; } = string.Empty;
public bool IsDefault { get; set; }
public bool State { get; set; }
}
}