IW4M-Admin/SharedLibraryCore/Events/Server/ServerValueSetCompleteEvent.cs

9 lines
230 B
C#
Raw Permalink Normal View History

2023-02-11 22:03:35 -05:00
namespace SharedLibraryCore.Events.Server;
public class ServerValueSetCompleteEvent : GameServerEvent
{
public bool Success { get; init; }
public string ValueName { get; init; }
public string Value { get; set; }
}