using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography.X509Certificates; using System.Text; using System.Threading.Tasks; namespace CCDCount.MODEL.ShuLiClass { public class ActiveObjectEventArgsClass:EventArgs { public List Actives = new List(); public int CameraNo { get; set; } = -1; public ActiveObjectEventArgsClass(List oneActive) { oneActive.ForEach(o => Actives.Add(o)); } } }