20 lines
402 B
C#
20 lines
402 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.App.Stores.Commands;
|
|
|
|
/// <summary>
|
|
/// 删除员工排班命令。
|
|
/// </summary>
|
|
public sealed record DeleteStoreEmployeeShiftCommand : IRequest<bool>
|
|
{
|
|
/// <summary>
|
|
/// 门店 ID。
|
|
/// </summary>
|
|
public long StoreId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 排班 ID。
|
|
/// </summary>
|
|
public long ShiftId { get; init; }
|
|
}
|