7136e4fc70
Labeled all service to enable assembly scanning
27 lines
542 B
C#
27 lines
542 B
C#
namespace LiteCharms.Features.MidrandBooks.Customers.Models;
|
|
|
|
public class Contact
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long CustomerId { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public ContactTypes Type { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? Phone { get; set; }
|
|
|
|
public bool IsPrimary { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|