16 lines
348 B
C#
16 lines
348 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Stores.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Stores.Queries;
|
|
|
|
/// <summary>
|
|
/// 获取门店费用配置查询。
|
|
/// </summary>
|
|
public sealed record GetStoreFeeQuery : IRequest<StoreFeeDto?>
|
|
{
|
|
/// <summary>
|
|
/// 门店 ID。
|
|
/// </summary>
|
|
public long StoreId { get; init; }
|
|
}
|