using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebDoorCreator.Data.DTO
{
///
/// COmpany data DTO
///
[Serializable]
public class CustomerDTO
{
public int CompanyId { get; set; }
///
/// Codice esterno x riferimento (es ERP)
///
[MaxLength(250)]
public string CompanyExtCode { get; set; } = "";
///
/// Nome / ragione Sociale
///
[MaxLength(500)]
public string CompanyName { get; set; } = "";
///
/// indirizzo
///
[MaxLength(250)]
public string Address { get; set; } = "";
///
/// CAP
///
public int ZipCode { get; set; } = 0;
///
/// Citta
///
[MaxLength(50)]
public string City { get; set; } = "";
///
/// Stato
///
[MaxLength(50)]
public string State { get; set; } = "";
///
/// VAT / P.Iva
///
[MaxLength(50)]
public string VAT { get; set; } = "";
}
}