blob: a6512dbee653998b31997f069a395d5ee2eb7d74 (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.CodeGeneration
{
public class EntityCodeFile : Class
{
public String TableName { get; set; }
public List<EntityCodeFileField> Fields { get; set; }
public EntityCodeFile(String name) : base(name)
{
Fields = new List<EntityCodeFileField>();
}
}
public class EntityCodeFileField
{
public String Name { get; set; }
public String FieldName { get; set; }
public String Type { get; set; }
public String Description { get; set; }
public bool Construct { get; set; }
}
}
|