CRUD_POO_Delphi/src/model/CRUDPOO.Model.Endereco.pas
alemedeiros@bsd.com.br 33f296ce36 novo post
2021-11-09 14:27:49 -03:00

20 lines
360 B
ObjectPascal

unit CRUDPOO.Model.Endereco;
interface
type
TEndereco = class
private
FLogradouro: String;
Fid: Integer;
FIdPessoa: Integer;
public
property Id : Integer read Fid write FId;
property IdPessoa : Integer read FIdPessoa write FIdPessoa;
property Logradouro : String read FLogradouro write FLogradouro;
end;
implementation
end.