445243aad5
* Remove nullable and add properties, make side use an enum instead of a string. * remove double semi-colon * fix comment
11 lines
165 B
C#
11 lines
165 B
C#
using SPTarkov.Server.Core.Utils.Json.Converters;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Enums;
|
|
|
|
[EftEnumConverter]
|
|
public enum PlayerGroup
|
|
{
|
|
Pmc,
|
|
Scav
|
|
}
|