Files
Final_Das/Entidades/Cliente.cs
2024-08-11 20:06:55 -03:00

21 lines
466 B
C#

using System.ComponentModel;
namespace Entidades
{
public class Cliente
{
public Int64 Cuit { get; set; }
public string Nombre { get; set; }
public string Apellido { get; set; }
public string Direccion { get; set; }
public string Correo { get; set; }
public bool Habilitado { get; set; }
public string NombreCompleto
{
get { return $"{Nombre} {Apellido}"; }
}
}
}