namespace Core.Models.Spt.Mod; public record PackageJsonData { public List? Incompatibilities { get; set; } public List? LoadBefore { get; set; } public List? LoadAfter { get; set; } public Dictionary? Dependencies { get; set; } public Dictionary? ModDependencies { get; set; } public string? Name { get; set; } public string? Url { get; set; } public string? Author { get; set; } public string? Version { get; set; } public string? SptVersion { get; set; } public string? Licence { get; set; } public string? Main { get; set; } public bool? IsBundleMod { get; set; } public List? Contributors { get; set; } }