using System; namespace Decal.Adapter; public class ControlEventArgs : EventArgs { private int id; public int Id => id; internal ControlEventArgs(int ID) { id = ID; } }