32 lines
959 B
C#
32 lines
959 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; }
|
|
public string Reason { get; set; }
|
|
}
|
|
|
|
public class OperationPersonnel
|
|
{
|
|
public int PowerStationId { get; set; }
|
|
public int EmailDayReport { get; set; }
|
|
public int EmailMonthReport { get; set; }
|
|
public int EmailComplexReport { get; set; }
|
|
public int EmailException { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|