mirror of
https://github.com/CloudDelphi/CRUDPOODelphi.git
synced 2025-12-19 09:43:51 +01:00
20 lines
360 B
ObjectPascal
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.
|