From 0938140e958c8505aaab765f63a89109cae69805 Mon Sep 17 00:00:00 2001 From: LumaLivy Date: Thu, 4 Nov 2021 01:01:02 -0400 Subject: [PATCH] Reorganize attributes --- ProjectLighthouse/Types/Score.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ProjectLighthouse/Types/Score.cs b/ProjectLighthouse/Types/Score.cs index b6b4c4c5..341f4e3b 100644 --- a/ProjectLighthouse/Types/Score.cs +++ b/ProjectLighthouse/Types/Score.cs @@ -35,16 +35,16 @@ namespace LBPUnion.ProjectLighthouse.Types set => this.PlayerIdCollection = string.Join(',', value); } - [XmlElement("mainPlayer")] [NotMapped] + [XmlElement("mainPlayer")] public string MainPlayer { get => this.PlayerIds[0]; set => this.PlayerIds[0] = value; } - [XmlElement("rank")] [NotMapped] + [XmlElement("rank")] public int Rank { get; set; } [XmlElement("score")]