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 JobSites { get; set; } } public class JobSiteCurfewMovementToleranceInfo { public long JobSiteId { get; set; } public string JobSiteName { get; set; } public decimal Tolerance { get; set; } } }