mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-28 16:08:38 +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 struct ApiSlot
|
||||||
{
|
{
|
||||||
public int SlotId { get; set; }
|
public int SlotId { get; set; }
|
||||||
|
public int InternalSlotId { get; set; }
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string Description { get; set; }
|
public string Description { get; set; }
|
||||||
public string IconHash { get; set; }
|
public string IconHash { get; set; }
|
||||||
|
@ -40,6 +41,7 @@ public struct ApiSlot
|
||||||
new()
|
new()
|
||||||
{
|
{
|
||||||
SlotId = slot.SlotId,
|
SlotId = slot.SlotId,
|
||||||
|
InternalSlotId = slot.InternalSlotId,
|
||||||
Name = slot.Name,
|
Name = slot.Name,
|
||||||
Description = slot.Description,
|
Description = slot.Description,
|
||||||
IconHash = slot.IconHash,
|
IconHash = slot.IconHash,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue