Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 16, 2013 19:45
Show Gist options
  • Save Fhernd/5793159 to your computer and use it in GitHub Desktop.
Save Fhernd/5793159 to your computer and use it in GitHub Desktop.
Clase Propietario.
class Propietario
{
private string cedula;
public string Cedula
{
get { return cedula; }
set { cedula = value; }
}
private string nombreCompleto;
public string NombreCompleto
{
get { return nombreCompleto; }
set { nombreCompleto = value; }
}
private string telefono;
public string Telefono
{
get { return telefono; }
set { telefono = value; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment