14 lines
361 B
C#
14 lines
361 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Tenants.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Tenants.Commands;
|
|
|
|
/// <summary>
|
|
/// 标记通知已读命令。
|
|
/// </summary>
|
|
public sealed record MarkTenantNotificationReadCommand : IRequest<TenantNotificationDto?>
|
|
{
|
|
public long TenantId { get; init; }
|
|
public long NotificationId { get; init; }
|
|
}
|