initial version with inspection edition
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace IronIntel.Contractor.Security
|
||||
{
|
||||
public class CurfewMovementToleranceInfo
|
||||
{
|
||||
public decimal DefaultTolerance { get; set; }
|
||||
public List<JobSiteCurfewMovementToleranceInfo> JobSites { get; set; }
|
||||
}
|
||||
|
||||
public class JobSiteCurfewMovementToleranceInfo
|
||||
{
|
||||
public long JobSiteId { get; set; }
|
||||
public string JobSiteName { get; set; }
|
||||
public decimal Tolerance { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user