ServerManagers/src/ConanServerManager/Lib/Events/ProfileEventArgs.cs
2021-01-07 16:23:23 +10:00

14 lines
257 B
C#

using System;
namespace ServerManagerTool.Lib
{
public class ProfileEventArgs : EventArgs
{
public ProfileEventArgs(ServerProfile profile)
{
Profile = profile;
}
public ServerProfile Profile;
}
}