crud-delphi/UnitSharedVariables.pas
2018-08-17 12:28:17 -03:00

15 lines
152 B
ObjectPascal

unit UnitSharedVariables;
interface
type
TSharedVariables = class(TObject)
private
public
SetarDados: integer;
end;
implementation
end.