21 lines
554 B
C#
21 lines
554 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Subscriptions.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Subscriptions.Queries;
|
|
|
|
/// <summary>
|
|
/// 查询订阅详情(含套餐信息、配额使用、变更历史)。
|
|
/// </summary>
|
|
public sealed record GetSubscriptionDetailQuery : IRequest<SubscriptionDetailDto?>
|
|
{
|
|
/// <summary>
|
|
/// 订阅 ID。
|
|
/// </summary>
|
|
public long SubscriptionId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 是否包含已软删除数据。
|
|
/// </summary>
|
|
public bool IncludeDeleted { get; init; }
|
|
}
|