chore: 提交当前变更

This commit is contained in:
2025-11-23 12:47:29 +08:00
parent cd52131c34
commit 429d4fb747
46 changed files with 1864 additions and 63 deletions

View File

@@ -0,0 +1,23 @@
namespace TakeoutSaaS.Application.Dictionary.Models;
/// <summary>
/// 字典项 DTO。
/// </summary>
public sealed class DictionaryItemDto
{
public Guid Id { get; init; }
public Guid GroupId { get; init; }
public string Key { get; init; } = string.Empty;
public string Value { get; init; } = string.Empty;
public bool IsDefault { get; init; }
public bool IsEnabled { get; init; }
public int SortOrder { get; init; }
public string? Description { get; init; }
}