namespace Neo.Afx.Services.Integration { /// /// The integration data source. /// public partial class DataSource { /// /// Gets or sets the connection string. /// public string ConnectionString { get; set; } /// /// Gets or sets the authentication domain. /// public string AuthDomain { get; set; } /// /// Gets or sets the authentication user. /// public string AuthUser { get; set; } /// /// Gets or sets the authentication password. /// public string AuthPassword { get; set; } } }