mirror of
https://github.com/rickrd/crud-delphi.git
synced 2025-12-19 09:03:43 +01:00
15 lines
152 B
ObjectPascal
15 lines
152 B
ObjectPascal
unit UnitSharedVariables;
|
|
|
|
interface
|
|
|
|
type
|
|
TSharedVariables = class(TObject)
|
|
private
|
|
public
|
|
SetarDados: integer;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|