using MediatR; using TakeoutSaaS.Application.App.Stores.Dto; namespace TakeoutSaaS.Application.App.Stores.Commands; /// /// 更新桌台区域命令。 /// public sealed record UpdateStoreTableAreaCommand : IRequest { /// /// 区域 ID。 /// public long AreaId { get; init; } /// /// 门店 ID。 /// public long StoreId { get; init; } /// /// 区域名称。 /// public string Name { get; init; } = string.Empty; /// /// 区域描述。 /// public string? Description { get; init; } /// /// 排序值。 /// public int SortOrder { get; init; } = 100; }