15 lines
415 B
C#
15 lines
415 B
C#
using System.Data;
|
|
|
|
namespace Nop.Data.Mapping;
|
|
|
|
public partial class NopEntityFieldDescriptor
|
|
{
|
|
public string Name { get; set; }
|
|
public bool IsIdentity { get; set; }
|
|
public bool? IsNullable { get; set; }
|
|
public bool IsPrimaryKey { get; set; }
|
|
public bool IsUnique { get; set; }
|
|
public int? Precision { get; set; }
|
|
public int? Size { get; set; }
|
|
public DbType Type { get; set; }
|
|
} |