UncoverASPNET6/OptionStudy.Next/Options/AppOption.cs

27 lines
616 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OptionStudy.UnitApp.Next
{
public class AppOption
{
/// <summary>
/// 软件名
/// </summary>
public string AppName { get; set; } = "IniAppName";
/// <summary>
/// 软件版本
/// </summary>
public Version AppVersion { get; set; } = new Version( "0.0.0.1");
/// <summary>
/// 接收邮箱配置对象
/// </summary>
public ReceiveMailOption? EMail { get; set; }
}
}