Skip to content
Snippets Groups Projects
Commit 4fb2141a authored by Michal Ondrejička's avatar Michal Ondrejička
Browse files

- config added to sectors

parent dd55ec1f
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,8 @@ namespace SDK.Contracts.Communication
public long Modified { get; set; }
public string Configuration { get; set; }
public GpsItemContract[]? GpsItems { get; set; }
public AreaContract[]? Areas { get; set; }
......@@ -51,6 +53,7 @@ namespace SDK.Contracts.Communication
SectorWidth = addSectorResponseContract.SectorWidth,
SectorHeight = addSectorResponseContract.SectorHeight,
Modified = addSectorResponseContract.Modified,
Configuration = addSectorResponseContract.Configuration,
GpsItems = addSectorResponseContract.GpsItems,
Areas = addSectorResponseContract.Areas,
Barriers = addSectorResponseContract.Barriers,
......
......@@ -26,6 +26,8 @@ namespace SDK.Models
public long Modified { get; set; }
public string Configuration { get; set; }
public GpsItemContract[]? GpsItems { get; set; }
public AreaContract[]? Areas { get; set; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment