Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

NopEntityFieldDescriptor.cs

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; }
}