namespace FastReport.Cloud.FastReport.Models.DataSource
{
internal sealed class DataSourcesOptions
{
///
/// Number of folder and files, that have to be skipped
///
public int? Skip { get; set; } = null;
///
/// Number of folder and files, that have to be returned
///
public int? Take { get; set; } = null;
///
/// Id of subscription with data sources
///
public string SubscriptionId { get; set; } = null;
}
}