18 lines
460 B
C#
18 lines
460 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 ReleaseTenantReviewClaimCommand : IRequest<TenantReviewClaimDto?>
|
||
{
|
||
/// <summary>
|
||
/// 租户 ID(雪花算法)。
|
||
/// </summary>
|
||
[Required]
|
||
public long TenantId { get; init; }
|
||
}
|