FIC_Solar/SolarPower/Models/NoticeSchedule.cs
Kai 69007218b5 1. bug fix
2. 加入寄信背景服務
2021-08-02 13:47:15 +08:00

21 lines
580 B
C#

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; }
}
}