10 lines
166 B
C#
10 lines
166 B
C#
using System;
|
|
|
|
namespace Sozsoft.Notifications;
|
|
|
|
public class NotificationRequestDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Message { get; set; }
|
|
}
|
|
|