13 lines
400 B
C#
13 lines
400 B
C#
namespace Zentral.Domain.Entities;
|
|
|
|
public class ClienteContatto : BaseEntity
|
|
{
|
|
public string Nome { get; set; } = string.Empty;
|
|
public string Cognome { get; set; } = string.Empty;
|
|
public string? Email { get; set; }
|
|
public string? Ruolo { get; set; }
|
|
public string? Telefono { get; set; }
|
|
public int ClienteId { get; set; }
|
|
public Cliente Cliente { get; set; } = null!;
|
|
}
|