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

45 lines
982 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Swift.DAL.Common
  7. {
  8. /// <summary>
  9. /// Summary description for ConfigDTO
  10. /// </summary>
  11. public class ConfigDTO
  12. {
  13. public ConfigDTO()
  14. {
  15. }
  16. public string Key { get; set; }
  17. public string Name { get; set; }
  18. public string UserName { get; set; }
  19. public string Password { get; set; }
  20. public string Field1 { get; set; }
  21. public string Field2 { get; set; }
  22. public string Field3 { get; set; }
  23. public string Field4 { get; set; }
  24. public string ToEmail { get; set; }
  25. public string ToEmailCc { get; set; }
  26. public string ToEmailBCc { get; set; }
  27. public bool IsValid { get { return !string.IsNullOrWhiteSpace(Key); } }
  28. public string URL { get; set; }
  29. public string Active { get; set; }
  30. }
  31. }