20 lines
404 B
C#
20 lines
404 B
C#
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; }
|
|
}
|