From abd8ef3b1f5ed6e800dad1c41476a652feda716d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 30 Oct 2025 23:55:08 -0400 Subject: [PATCH] Xbox model cleanup --- SabreTools.Serialization/Models/Xbox/Constants.cs | 12 ++++++------ SabreTools.Serialization/Models/Xbox/XMID.cs | 6 +++--- SabreTools.Serialization/Models/Xbox/XeMID.cs | 12 ++++++------ 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/SabreTools.Serialization/Models/Xbox/Constants.cs b/SabreTools.Serialization/Models/Xbox/Constants.cs index 542a8067..32f2b099 100644 --- a/SabreTools.Serialization/Models/Xbox/Constants.cs +++ b/SabreTools.Serialization/Models/Xbox/Constants.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; namespace SabreTools.Data.Models.Xbox { - /// - /// - /// + /// + /// + /// public static class Constants { /// @@ -129,7 +129,7 @@ namespace SabreTools.Data.Models.Xbox { "PC", "Playlogic Entertainment" }, { "PL", "Phantagram Co., Ltd. / Playlogic Entertainment" }, // TODO: Confirm - + { "RA", "Rage" }, { "SA", "Sammy" }, @@ -183,7 +183,7 @@ namespace SabreTools.Data.Models.Xbox { "" + (char)0xFF + (char)0xFE, "Microsoft Downloadable Content" }, { "" + (char)0xFF + (char)0xFF, "Microsoft Downloadable Content" }, }; - + /// /// Mapping of all region 1-letter codes to long names /// @@ -198,4 +198,4 @@ namespace SabreTools.Data.Models.Xbox { 'W', "World" }, }; } -} \ No newline at end of file +} diff --git a/SabreTools.Serialization/Models/Xbox/XMID.cs b/SabreTools.Serialization/Models/Xbox/XMID.cs index 9df4f0f5..c3241e9b 100644 --- a/SabreTools.Serialization/Models/Xbox/XMID.cs +++ b/SabreTools.Serialization/Models/Xbox/XMID.cs @@ -17,17 +17,17 @@ namespace SabreTools.Data.Models.Xbox /// /// 2-character publisher identifier /// - public string? PublisherIdentifier { get; set; } + public string PublisherIdentifier { get; set; } /// /// 3-character Game ID /// - public string? GameID { get; set; } + public string GameID { get; set; } /// /// 2-character Internal version number /// - public string? VersionNumber { get; set; } + public string VersionNumber { get; set; } /// /// 1-character Region identifier character diff --git a/SabreTools.Serialization/Models/Xbox/XeMID.cs b/SabreTools.Serialization/Models/Xbox/XeMID.cs index d43d6678..3c23157a 100644 --- a/SabreTools.Serialization/Models/Xbox/XeMID.cs +++ b/SabreTools.Serialization/Models/Xbox/XeMID.cs @@ -22,7 +22,7 @@ namespace SabreTools.Data.Models.Xbox /// /// 2-character publisher identifier /// - public string? PublisherIdentifier { get; set; } + public string PublisherIdentifier { get; set; } /// /// 1-character Platform disc is made for, 2 indicates Xbox 360 @@ -32,12 +32,12 @@ namespace SabreTools.Data.Models.Xbox /// /// 3-character Game ID /// - public string? GameID { get; set; } + public string GameID { get; set; } /// /// 2-character Title-specific SKU /// - public string? SKU { get; set; } + public string SKU { get; set; } /// /// 1-character Region identifier character @@ -47,7 +47,7 @@ namespace SabreTools.Data.Models.Xbox /// /// 2-character Base version of executables, usually starts at 01 /// - public string? BaseVersion { get; set; } + public string BaseVersion { get; set; } /// /// 1-character Media subtype identifier @@ -57,11 +57,11 @@ namespace SabreTools.Data.Models.Xbox /// /// 2-character Disc number stored in [disc number][total discs] format /// - public string? DiscNumberIdentifier { get; set; } + public string DiscNumberIdentifier { get; set; } /// /// 8-hex-digit certification submission identifier; usually on test discs only /// - public string? CertificationSubmissionIdentifier { get; set; } + public string CertificationSubmissionIdentifier { get; set; } } }