docs: add xml comments for tenant modules

This commit is contained in:
2025-12-03 22:56:35 +08:00
parent 83c81d5fd1
commit bf88f0e041
28 changed files with 661 additions and 40 deletions

View File

@@ -7,6 +7,13 @@ namespace TakeoutSaaS.Application.App.Tenants.Commands;
/// </summary>
public sealed record DeleteTenantAnnouncementCommand : IRequest<bool>
{
/// <summary>
/// 租户 ID雪花算法
/// </summary>
public long TenantId { get; init; }
/// <summary>
/// 公告 ID。
/// </summary>
public long AnnouncementId { get; init; }
}