cs11dotnet7/vscode/Chapter11/Ch11Ex02LinqQueries/Customer.cs
2022-03-06 10:37:59 +00:00

41 lines
807 B
C#

using System.ComponentModel.DataAnnotations;
namespace Packt.Shared;
public class Customer
{
[StringLength(5)]
public string CustomerId { get; set; } = null!;
[Required]
[StringLength(40)]
public string CompanyName { get; set; } = null!;
[StringLength(30)]
public string? ContactName { get; set; }
[StringLength(30)]
public string? ContactTitle { get; set; }
[StringLength(60)]
public string? Address { get; set; }
[StringLength(15)]
public string? City { get; set; }
[StringLength(15)]
public string? Region { get; set; }
[StringLength(10)]
public string? PostalCode { get; set; }
[StringLength(15)]
public string? Country { get; set; }
[StringLength(24)]
public string? Phone { get; set; }
[StringLength(24)]
public string? Fax { get; set; }
}