sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application.Contracts/Notification/NotificationRequestDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

10 lines
166 B
C#

using System;
namespace Sozsoft.Notifications;
public class NotificationRequestDto
{
public Guid Id { get; set; }
public string Message { get; set; }
}