initial version with inspection edition

This commit is contained in:
2020-04-29 14:08:00 +08:00
commit 6a5629fc3b
186 changed files with 33984 additions and 0 deletions

View File

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