using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NDSD_Screwdriver.Entity { public class LightsEntity { public int Green { get; set; } public int Yellow { get; set; } public int Red { get; set; } } }