18 lines
446 B
C#
18 lines
446 B
C#
using MediatR;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using TakeoutSaaS.Application.App.Tenants.Dto;
|
||
|
||
namespace TakeoutSaaS.Application.App.Tenants.Commands;
|
||
|
||
/// <summary>
|
||
/// 领取租户入驻审核命令。
|
||
/// </summary>
|
||
public sealed record ClaimTenantReviewCommand : IRequest<TenantReviewClaimDto>
|
||
{
|
||
/// <summary>
|
||
/// 租户 ID(雪花算法)。
|
||
/// </summary>
|
||
[Required]
|
||
public long TenantId { get; init; }
|
||
}
|