Skip to content

Commit

Permalink
[HER-80] Create camera business model (#41)
Browse files Browse the repository at this point in the history
* [HER-80]Create MCamera business model

* [HER-80]Follow-up Change from int to string
  • Loading branch information
Urzica-Platon-Casian authored Jul 26, 2021
1 parent 78a876d commit abb65b8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Business/Business.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@
<InformationalVersion>2021.0.0.Branch.Sha</InformationalVersion>
</PropertyGroup>

<ItemGroup>
<Folder Include="Camera\Common" />
<Folder Include="Detection\Common\Commands" />
</ItemGroup>

</Project>
11 changes: 11 additions & 0 deletions src/Business/Camera/Common/Models/MCamera.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace Business.Camera.Common.Models
{
public class MCamera
{
public string Id { get; set; }

public string Longitude { get; set; }

public string Latitude { get; set; }
}
}

0 comments on commit abb65b8

Please sign in to comment.