From 767f6271f281fe1f09e72e9fcea4096995c36746 Mon Sep 17 00:00:00 2001 From: Slendy Date: Tue, 4 Apr 2023 20:53:45 -0500 Subject: [PATCH] Include internal slot ID in ApiSlot response --- ProjectLighthouse.Servers.API/Responses/ApiSlot.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ProjectLighthouse.Servers.API/Responses/ApiSlot.cs b/ProjectLighthouse.Servers.API/Responses/ApiSlot.cs index c4b505cf..a11b7766 100644 --- a/ProjectLighthouse.Servers.API/Responses/ApiSlot.cs +++ b/ProjectLighthouse.Servers.API/Responses/ApiSlot.cs @@ -10,6 +10,7 @@ namespace LBPUnion.ProjectLighthouse.Servers.API.Responses; public struct ApiSlot { public int SlotId { get; set; } + public int InternalSlotId { get; set; } public string Name { get; set; } public string Description { get; set; } public string IconHash { get; set; } @@ -40,6 +41,7 @@ public struct ApiSlot new() { SlotId = slot.SlotId, + InternalSlotId = slot.InternalSlotId, Name = slot.Name, Description = slot.Description, IconHash = slot.IconHash,