You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
307 B
11 lines
307 B
namespace EntityBuilder
|
|
{
|
|
public class ColumnInfo
|
|
{
|
|
public string DbColumnName { get; set; }
|
|
public string DataType { get; set; }
|
|
public string IsPrimarykey { get; set; }
|
|
public string IsIdentity { get; set; }
|
|
public string IsNullable { get; set; }
|
|
}
|
|
}
|