generated from Integry/Template_NetMauiBlazorHybrid
9 lines
218 B
C#
9 lines
218 B
C#
namespace salesbook.Shared.Core.Dto.Notification;
|
|
|
|
public class PushNotificationDTO
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? Message { get; set; }
|
|
|
|
public DateTime Hours => DateTime.Now;
|
|
} |