using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SolarPower.Models { public class NoticeSchedule { public int Id { get; set; } public byte Type { get; set; } public string RecipientName { get; set; } public string RecipientEmail { get; set; } public string Subject { get; set; } public string Content { get; set; } public string Attachment { get; set; } public byte IsDelivery { get; set; } public string DeliveryAt { get; set; } } }