//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace NorthwindSales.ModelsAutoMetadata
{
public partial class CustomerAutoMetadata
{
[DisplayName("Customer ID")]
[Required]
[StringLength(5)]
public string CustomerID { get; set; }
[DisplayName("Company Name")]
[Required]
[StringLength(40)]
public string CompanyName { get; set; }
[DisplayName("Contact Name")]
[StringLength(30)]
public string ContactName { get; set; }
[DisplayName("Contact Title")]
[StringLength(30)]
public string ContactTitle { get; set; }
[DisplayName("Address")]
[StringLength(60)]
public string Address { get; set; }
[DisplayName("City")]
[StringLength(15)]
public string City { get; set; }
[DisplayName("Region")]
[StringLength(15)]
public string Region { get; set; }
[DisplayName("Postal Code")]
[StringLength(10)]
public string PostalCode { get; set; }
[DisplayName("Country")]
[StringLength(15)]
public string Country { get; set; }
[DisplayName("Phone")]
[StringLength(24)]
public string Phone { get; set; }
[DisplayName("Fax")]
[StringLength(24)]
public string Fax { get; set; }
}
}