18 lines
391 B
C#
18 lines
391 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SolarPower.Models.SystemUpdate
|
|
{
|
|
public class PostSystemUpdate
|
|
{
|
|
public string Subject { get; set; } //主旨
|
|
public string Content { get; set; } //內容
|
|
public int EmailType { get; set; } //信件類型
|
|
|
|
}
|
|
|
|
}
|