15 lines
236 B
C#
15 lines
236 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class AcceptTradeEventArgs : EventArgs
|
|
{
|
|
private int mTargetId;
|
|
|
|
public int TargetId => mTargetId;
|
|
|
|
internal AcceptTradeEventArgs(int TargetId)
|
|
{
|
|
mTargetId = TargetId;
|
|
}
|
|
}
|