fleet-contractor/IronIntelContractorBusiness/Security/CurfewMovementToleranceInfo.cs

22 lines
558 B
C#

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; }
}
}