EDBGS/EDPlayerJournal/CrimeTypes.cs

11 lines
522 B
C#
Raw Normal View History

2022-11-01 18:01:28 +01:00
namespace EDPlayerJournal;
public class CrimeTypes {
public static readonly string Assault = "assault";
public static readonly string Murder = "murder";
public static readonly string OnFootArcCutterUse = "onFoot_arcCutterUse";
public static readonly string OnFootDataTransfer = "onFoot_dataTransfer";
public static readonly string OnFootIdentityTheft = "onFoot_identityTheft";
public static readonly string OnFootMurder = "onFoot_murder";
public static readonly string Piracy = "piracy";
}