1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-08 06:08:20 -05:00
IW4M-Admin/SharedLibraryCore/Events/Server/ServerValueSetCompleteEvent.cs
2023-02-11 21:03:35 -06:00

9 lines
230 B
C#

namespace SharedLibraryCore.Events.Server;
public class ServerValueSetCompleteEvent : GameServerEvent
{
public bool Success { get; init; }
public string ValueName { get; init; }
public string Value { get; set; }
}