mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-14 23:54:43 -04:00
19 lines
478 B
C#
19 lines
478 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Observatory.Framework.Files.Journal.Startup;
|
|
|
|
public class FileHeader : JournalBase
|
|
{
|
|
[JsonPropertyName("part")]
|
|
public int Part { get; init; }
|
|
|
|
[JsonPropertyName("language")]
|
|
public string Language { get; init; }
|
|
|
|
[JsonPropertyName("gameversion")]
|
|
public string GameVersion { get; init; }
|
|
|
|
[JsonPropertyName("build")]
|
|
public string Build { get; init; }
|
|
public bool Odyssey { get; init; }
|
|
} |