-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathEbModel.cs
More file actions
51 lines (31 loc) · 1.08 KB
/
EbModel.cs
File metadata and controls
51 lines (31 loc) · 1.08 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ExpressBase.Web2.Models
{
public class EbModel
{
public int FormId { get; set; }
public int VersionId { get; set; }
public int TableId { get; set; }
public bool IsEdited { get; set; }
public Dictionary<string, object> PrimaryValues { get; set; }
public string temp { get; set; }
public List<EbModelLine> Lines { get; set; }
public bool IsVoid { get; set; }
public bool IsLocked { get; set; }
public bool IsDeleted { get; set; }
public bool RememberMe { get; set; }
public EbModel()
{
this.PrimaryValues = new Dictionary<string, object>();
this.Lines = new List<EbModelLine>();
}
}
public class EbModelLine
{
public int TableId { get; set; }
public List<Dictionary<int, object>> LineValues { get; set; }
}
}