15 lines
232 B
C#
15 lines
232 B
C#
using System;
|
|
|
|
namespace Decal.Adapter;
|
|
|
|
public class ItemSelectedEventArgs : EventArgs
|
|
{
|
|
private int myItemGUID;
|
|
|
|
public int ItemGuid => myItemGUID;
|
|
|
|
internal ItemSelectedEventArgs(int itemGUID)
|
|
{
|
|
myItemGUID = itemGUID;
|
|
}
|
|
}
|