16 lines
371 B
C#
16 lines
371 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Deliveries.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Deliveries.Queries;
|
|
|
|
/// <summary>
|
|
/// 配送单详情查询。
|
|
/// </summary>
|
|
public sealed class GetDeliveryOrderByIdQuery : IRequest<DeliveryOrderDto?>
|
|
{
|
|
/// <summary>
|
|
/// 配送单 ID。
|
|
/// </summary>
|
|
public long DeliveryOrderId { get; init; }
|
|
}
|