sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/Notification/NotificationRequestDto.cs

11 lines
166 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
using System;
namespace Sozsoft.Notifications;
public class NotificationRequestDto
{
public Guid Id { get; set; }
public string Message { get; set; }
}