From 41ed2cbc9a9c51b439f99d9b249fa10387cb968f Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 12 Mar 2024 00:07:47 -0400 Subject: [PATCH] Fix XML element name for duplicateId --- OfflineList/Game.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OfflineList/Game.cs b/OfflineList/Game.cs index 26e3436..ad9cffc 100644 --- a/OfflineList/Game.cs +++ b/OfflineList/Game.cs @@ -46,7 +46,7 @@ namespace SabreTools.Models.OfflineList [XmlElement("comment")] public string? Comment { get; set; } - [XmlElement("duplicateID")] + [XmlElement("duplicateId")] public string? DuplicateID { get; set; } #region DO NOT USE IN PRODUCTION