mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-13 15:24:44 -04:00
15 lines
490 B
C#
15 lines
490 B
C#
using System.Text.Json.Serialization;
|
|
using Observatory.Framework.Files.ParameterTypes;
|
|
|
|
namespace Observatory.Framework.Files.Journal.Other;
|
|
|
|
public class CommitCrime : JournalBase
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public CrimeType CrimeType { get; init; }
|
|
public string Faction { get; init; }
|
|
public string Victim { get; init; }
|
|
public string Victim_Localised { get; init; }
|
|
public int Fine { get; init; }
|
|
public int Bounty { get; init; }
|
|
} |