mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-24 14:11:29 +00:00
Include internal slot ID in ApiSlot response
This commit is contained in:
parent
f2dd41dd52
commit
767f6271f2
1 changed files with 2 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue