Added Customer, Contact and Address with Service
Labeled all service to enable assembly scanning
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
namespace LiteCharms.Features.MidrandBooks.Customers.Models;
|
||||
|
||||
public class Address
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public long CustomerId { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
|
||||
public AddressType Type { get; set; }
|
||||
|
||||
public AddressBuildingTypes BuildingType { get; set; }
|
||||
|
||||
public string? Street { get; set; }
|
||||
|
||||
public string? City { get; set; }
|
||||
|
||||
public string? State { get; set; }
|
||||
|
||||
public string? PostalCode { get; set; }
|
||||
|
||||
public string? Country { get; set; }
|
||||
|
||||
public bool IsPrimary { get; set; }
|
||||
|
||||
public bool Enabled { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user