erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Application.Contracts/Notification/NotificationRequestDto.cs
2025-08-18 11:14:23 +03:00

9 lines
162 B
C#

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