EmailInfo.cs 285 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Core.Models
  5. {
  6. public class EmailInfo : Base
  7. {
  8. /// <summary>
  9. /// 收件人列表
  10. /// </summary>
  11. public string Recipient { get; set; }
  12. }
  13. }