namespace salesbook.Shared.Core.Dto.Notification; public class PushNotificationDTO { public string? Title { get; set; } public string? Message { get; set; } public DateTime Hours => DateTime.Now; }