using MediatR;
namespace TakeoutSaaS.Application.App.Stores.Commands;
///
/// 删除节假日配置命令。
///
public sealed record DeleteStoreHolidayCommand : IRequest
{
///
/// 门店 ID。
///
public long StoreId { get; init; }
///
/// 节假日 ID。
///
public long HolidayId { get; init; }
}