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; } }