using MediatR; namespace TakeoutSaaS.Application.App.Stores.Commands; /// /// 删除门店命令。 /// public sealed class DeleteStoreCommand : IRequest { /// /// 门店 ID。 /// public long StoreId { get; set; } }