using System; namespace UserManagement.Data { public class ReminderNotification { public Guid Id { get; set; } public Guid ReminderId { get; set; } public string Subject { get; set; } public string Description { get; set; } public DateTime FetchDateTime { get; set; } public bool IsDeleted { get; set; } public bool IsEmailNotification { get; set; } public Reminder Reminder { get; set; } } }