namespace Neo.Afx.Services.Integration { /// /// The integration data source. /// public partial class DataSource { /// /// Gets or sets the data source ID. /// public int DataSourceID { get; set; } /// /// Gets or sets the name of the data source. /// public string DataSourceName { get; set; } /// /// Gets or sets the request query. /// public string RequestQuery { get; set; } /// /// Gets or sets the request headers. /// public string RequestHeaders { get; set; } /// /// Gets or sets the entity schema. /// public string EntitySchema { get; set; } /// /// Gets or sets a value indicating whether this instance is cancelled. /// public bool IsCancelled { get; set; } /// /// Gets or sets the response XSL. /// public string ResponseXsl { get; set; } /// /// Gets or sets a value indicating whether this instance is cache enabled. /// public bool IsCacheEnabled { get; set; } /// /// Gets or sets the cache minutes. /// public int CacheMinutes { get; set; } } }