mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
26c0eb5eb8
TestSerUnSerObject TestSerUnSerObjectList
25 lines
344 B
ObjectPascal
25 lines
344 B
ObjectPascal
unit mapperprimer;
|
|
|
|
interface
|
|
|
|
uses
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
|
|
|
|
type
|
|
TForm7 = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
Form7: TForm7;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|