You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
623 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OptionsPattern.Sutdy.Experience
{
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; }
}
}