16 lines
461 B
C#
16 lines
461 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Tenants.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Tenants.Commands;
|
|
|
|
/// <summary>
|
|
/// 标记租户账单已支付命令。
|
|
/// </summary>
|
|
public sealed record MarkTenantBillingPaidCommand : IRequest<TenantBillingDto?>
|
|
{
|
|
public long TenantId { get; init; }
|
|
public long BillingId { get; init; }
|
|
public decimal AmountPaid { get; init; }
|
|
public DateTime PaidAt { get; init; } = DateTime.UtcNow;
|
|
}
|