15 lines
180 B
C#
15 lines
180 B
C#
using System;
|
|
|
|
namespace Decal.Adapter;
|
|
|
|
public class ControlEventArgs : EventArgs
|
|
{
|
|
private int id;
|
|
|
|
public int Id => id;
|
|
|
|
internal ControlEventArgs(int ID)
|
|
{
|
|
id = ID;
|
|
}
|
|
}
|