using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Vrh.OneReport.Lib.Areas.OneReport.DbModels { public partial class QuerySettingsSet { public QuerySettingsSet() { this.LastSettingsSets = new List(); } public int Id { get; set; } public string User { get; set; } public string Query { get; set; } public string Name { get; set; } public string FieldFilters { get; set; } public string Settings { get; set; } public string Filters { get; set; } public virtual ICollection LastSettingsSets { get; set; } } }