From 045a39ba5fd6b059c8379d58f6c8a10e87a656cb Mon Sep 17 00:00:00 2001 From: Kat Date: Thu, 9 Jan 2025 19:48:44 -0800 Subject: [PATCH] documentation and fix closing tag --- ProjectLighthouse/Types/Entities/Level/SlotEntity.cs | 3 +++ ProjectLighthouse/Types/Entities/Profile/UserEntity.cs | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ProjectLighthouse/Types/Entities/Level/SlotEntity.cs b/ProjectLighthouse/Types/Entities/Level/SlotEntity.cs index bd6a7bb07..0a0ffac4a 100644 --- a/ProjectLighthouse/Types/Entities/Level/SlotEntity.cs +++ b/ProjectLighthouse/Types/Entities/Level/SlotEntity.cs @@ -29,6 +29,9 @@ public class SlotEntity public string IconHash { get; set; } = ""; + /// + /// Markup that displays the level name next to its badge + /// [NotMapped] public string InfoXml => $"{this.Name}"; diff --git a/ProjectLighthouse/Types/Entities/Profile/UserEntity.cs b/ProjectLighthouse/Types/Entities/Profile/UserEntity.cs index fb4950349..b6d9979f1 100644 --- a/ProjectLighthouse/Types/Entities/Profile/UserEntity.cs +++ b/ProjectLighthouse/Types/Entities/Profile/UserEntity.cs @@ -28,8 +28,11 @@ public class UserEntity public string IconHash { get; set; } + /// + /// Markup that displays the username next to a polaroid with the user's icon ingame + /// [NotMapped] - public string InfoXml => $"{this.Username}"; + public string InfoXml => $"{this.Username}"; /// /// A user-customizable biography shown on the profile card