15 lines
257 B
C#
15 lines
257 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.IDQueue;
|
|
|
|
public class UserIDRequestProcessedEventArgs : EventArgs
|
|
{
|
|
private int mObjectId;
|
|
|
|
public int ObjectId => mObjectId;
|
|
|
|
internal UserIDRequestProcessedEventArgs(int ObjectId)
|
|
{
|
|
mObjectId = ObjectId;
|
|
}
|
|
}
|