16 lines
484 B
C#
16 lines
484 B
C#
namespace BlazorApp.Shared.Models
|
|
{
|
|
public class Customer
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? CompanyName { get; set; }
|
|
public string? ContactName { get; set; }
|
|
public string? Address { get; set; }
|
|
public string? City { get; set; }
|
|
public string? Region { get; set; }
|
|
public string? PostalCode { get; set; }
|
|
public string? Country { get; set; }
|
|
public string? Phone { get; set; }
|
|
}
|
|
}
|