using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OptionStudy.UnitApp.Next { /// /// 接收邮件配置 /// public class ReceiveMailOption { /// /// 接收邮箱地址 /// public string? ReceiveAddress { get; set; } /// /// 接收人 /// public string? Recipient{ get; set; } } }