2025-05-06 06:45:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
2025-08-18 08:14:23 +00:00
|
|
|
|
public class NotificationRequestDto
|
2025-05-06 06:45:49 +00:00
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
public string Message { get; set; }
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|