mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-07 19:56:22 +00:00
14 lines
257 B
C#
14 lines
257 B
C#
using System;
|
|
|
|
namespace ServerManagerTool.Lib
|
|
{
|
|
public class ProfileEventArgs : EventArgs
|
|
{
|
|
public ProfileEventArgs(ServerProfile profile)
|
|
{
|
|
Profile = profile;
|
|
}
|
|
|
|
public ServerProfile Profile;
|
|
}
|
|
}
|