Prvni verze

This commit is contained in:
2025-05-21 21:19:51 +02:00
parent 9919973fc2
commit b1cd64bb32
45 changed files with 27247 additions and 17 deletions

23
dataMod.pas Normal file
View File

@ -0,0 +1,23 @@
unit dataMod;
interface
uses
System.SysUtils, System.Classes;
type
Tdm = class(TDataModule)
private
public
end;
var
dm: Tdm;
implementation
{%CLASSGROUP 'Vcl.Controls.TControl'}
{$R *.dfm}
end.