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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Swift.DAL.Common
{
/// <summary>
/// Summary description for ConfigDTO
/// </summary>
public class ConfigDTO
{
public ConfigDTO()
{
}
public string Key { get; set; }
public string Name { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string Field1 { get; set; }
public string Field2 { get; set; }
public string Field3 { get; set; }
public string Field4 { get; set; }
public string ToEmail { get; set; }
public string ToEmailCc { get; set; }
public string ToEmailBCc { get; set; }
public bool IsValid { get { return !string.IsNullOrWhiteSpace(Key); } }
public string URL { get; set; }
public string Active { get; set; }
}
}