Blame view

Vrh.Web.OneReport.Lib/DbModels/QuerySettingsSet.cs 732 Bytes
ab9f2fbe   Schwirg László   Add project files.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  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<LastSettingsSet>();
          }
  
          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<LastSettingsSet> LastSettingsSets { get; set; }
      }
  }