16 lines
384 B
C#
16 lines
384 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Stores.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Stores.Queries;
|
|
|
|
/// <summary>
|
|
/// 检查门店资质完整性查询。
|
|
/// </summary>
|
|
public sealed record CheckStoreQualificationsQuery : IRequest<StoreQualificationCheckResultDto>
|
|
{
|
|
/// <summary>
|
|
/// 门店 ID。
|
|
/// </summary>
|
|
public long StoreId { get; init; }
|
|
}
|