MosswartMassacre/Unused/Decal.Adapter.Wrappers/ChangeFellowshipEventArgs.cs
2025-06-09 02:03:11 +02:00

20 lines
339 B
C#

using System;
namespace Decal.Adapter.Wrappers;
public class ChangeFellowshipEventArgs : EventArgs
{
private FellowshipEventType myType;
private int myId;
public FellowshipEventType Type => myType;
public int Id => myId;
internal ChangeFellowshipEventArgs(FellowshipEventType type, int Id)
{
myType = type;
myId = Id;
}
}