erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Application.Contracts/Notification/NotificationRequestDto.cs
2025-11-11 22:49:52 +03:00

10 lines
162 B
C#

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