14 lines
347 B
C#
14 lines
347 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Tenants.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Tenants.Queries;
|
|
|
|
/// <summary>
|
|
/// 公告详情查询。
|
|
/// </summary>
|
|
public sealed record GetTenantAnnouncementQuery : IRequest<TenantAnnouncementDto?>
|
|
{
|
|
public long TenantId { get; init; }
|
|
public long AnnouncementId { get; init; }
|
|
}
|