forked from d4software/QueryTree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbJoinStructure.cs
More file actions
32 lines (25 loc) · 829 Bytes
/
DbJoinStructure.cs
File metadata and controls
32 lines (25 loc) · 829 Bytes
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
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
namespace QueryTree.Models
{
public class DbJoinStructure
{
public DbJoinStructure()
{
ChildJoinColumn = null;
ParentJoinColumn = null;
Columns = new List<string>();
ColumnTypes = new List<string>();
ShowColumns = new List<bool>();
Parents = new List<DbJoinStructure>();
}
public string ChildJoinColumn { get; set; }
public string ParentJoinColumn { get; set; }
public string DisplayName { get; set; }
public List<string> Columns { get; set; }
public List<bool> ShowColumns { get; set; }
public List<string> ColumnTypes { get; set; }
public List<DbJoinStructure> Parents { get; set; }
}
}