15 lines
482 B
C#
15 lines
482 B
C#
using AMREZ.EOP.Domain.Entities.Common;
|
|
using AMREZ.EOP.Domain.Shared.Customer;
|
|
|
|
namespace AMREZ.EOP.Domain.Entities.Customers;
|
|
|
|
public sealed class CustomerContact : BaseEntity
|
|
{
|
|
public Guid CustomerProfileId { get; set; }
|
|
public ContactType Type { get; set; }
|
|
public string Value { get; set; } = default!;
|
|
public bool IsPrimary { get; set; }
|
|
public bool IsVerified { get; set; }
|
|
|
|
public CustomerProfile Customer { get; set; } = default!;
|
|
} |