chore: 提交当前变更
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using TakeoutSaaS.Domain.Dictionary.Enums;
|
||||
|
||||
namespace TakeoutSaaS.Application.Dictionary.Models;
|
||||
|
||||
/// <summary>
|
||||
/// 字典分组 DTO。
|
||||
/// </summary>
|
||||
public sealed class DictionaryGroupDto
|
||||
{
|
||||
public Guid Id { get; init; }
|
||||
|
||||
public string Code { get; init; } = string.Empty;
|
||||
|
||||
public string Name { get; init; } = string.Empty;
|
||||
|
||||
public DictionaryScope Scope { get; init; }
|
||||
|
||||
public string? Description { get; init; }
|
||||
|
||||
public bool IsEnabled { get; init; }
|
||||
|
||||
public IReadOnlyList<DictionaryItemDto> Items { get; init; } = Array.Empty<DictionaryItemDto>();
|
||||
}
|
||||
Reference in New Issue
Block a user