24 lines
696 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronIntel.Contractor.Security
{
public class JobsiteLimitInfo
{
public long ID { get; set; }
public long JobSiteID { get; set; }
public string JobSiteName { get; set; }
public bool Active { get; set; }
public string StartTime { get; set; }
public string EndTime { get; set; }
public int MinTrucks { get; set; }
public int MaxTrucks { get; set; }
public string AssetTypes { get; set; }
public string AssetTypeNames { get; set; }
public string Notes { get; set; }
}
}