feat: 完成门店子资源管理与文档同步
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using MediatR;
|
||||
|
||||
namespace TakeoutSaaS.Application.App.Stores.Commands;
|
||||
|
||||
/// <summary>
|
||||
/// 删除节假日配置命令。
|
||||
/// </summary>
|
||||
public sealed record DeleteStoreHolidayCommand : IRequest<bool>
|
||||
{
|
||||
/// <summary>
|
||||
/// 门店 ID。
|
||||
/// </summary>
|
||||
public long StoreId { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 节假日 ID。
|
||||
/// </summary>
|
||||
public long HolidayId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user