Skip to content

Commit

Permalink
[HER-76] Create detection parameter (#38)
Browse files Browse the repository at this point in the history
* [HER-76]Create PDetection model

* [HER-76]Follow up Initialize Pagination

* [HER-76]Follow-up Move PDetection
  • Loading branch information
ConstantinescuAndrei authored Jul 26, 2021
1 parent f26ca1c commit 78a876d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Business/Detection/Fetching/Models/PDetection.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
namespace Business.Detection.Fetching.Models
{
using System;
using Business.Pagination;

public class PDetection
{
public int Id { get; set; }

public int Score { get; set; }

public string Class { get; set; }

public DateTime Timestamp { get; set; }

public PPagination Pagination { get; set; } = new PPagination();
}
}

0 comments on commit 78a876d

Please sign in to comment.