erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Application.Contracts/Notification/NotificationRequestDto.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

9 lines
163 B
C#

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