erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Application.Contracts/Notification/NotificationRequestDto.cs

10 lines
163 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
namespace Kurs.Notifications;
public class NotificationRequestDto
{
public Guid Id { get; set; }
public string Message { get; set; }
}