edjournal/CrimeTypes.cs

12 lines
554 B
C#

namespace EDJournal {
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";
}
}