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