feat: 租户账单公告通知接口
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user