-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuCuriosityImg.pas
36 lines (30 loc) · 924 Bytes
/
uCuriosityImg.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
unit uCuriosityImg;
interface
type
TCuriosityImg = class
private
FId, FSol : integer;
FCamera, FCameraFull: string;
FImgsrc: string;
FEarthDate: string;
public
constructor Create(const id, sol : integer; const Camera, cameraFull, ImgSrc, EarthDate : String);
property Id: integer read FId write FId;
property Sol: integer read FSol write FSol;
property Camera: string read FCamera write FCamera;
property CameraFull: string read FCameraFull write FCameraFull;
property ImgSrc: string read FImgSrc write FImgSrc;
property EarthDate: string read FEarthDate write FEarthDate;
end;
implementation
{ TCuriosityImg }
constructor TCuriosityImg.Create(const id, sol : integer; const Camera, cameraFull, ImgSrc, EarthDate : String);
begin
FId := id;
FSol := sol;
FCamera := camera;
FCameraFull := cameraFull;
FImgsrc := ImgSrc;
FEarthDate := EarthDate;
end;
end.