Add GetfolderResponse.EventfolderData.ParentFolderId handle
This commit is contained in:
parent
e5678d00fd
commit
dca46c0cd7
@ -4,15 +4,18 @@ namespace SharedProject.Models;
|
||||
|
||||
public class EventFolderData
|
||||
{
|
||||
[JsonPropertyName("folderId")]
|
||||
public uint FolderId { get; set; }
|
||||
[JsonPropertyName("folderId")]
|
||||
public uint FolderId { get; set; }
|
||||
|
||||
[JsonPropertyName("verupNo")]
|
||||
public uint VerupNo { get; set; }
|
||||
[JsonPropertyName("verupNo")]
|
||||
public uint VerupNo { get; set; }
|
||||
|
||||
[JsonPropertyName("priority")]
|
||||
public uint Priority { get; set; }
|
||||
[JsonPropertyName("priority")]
|
||||
public uint Priority { get; set; }
|
||||
|
||||
[JsonPropertyName("songNo")]
|
||||
public uint[]? SongNo { get; set; }
|
||||
[JsonPropertyName("songNo")]
|
||||
public uint[]? SongNo { get; set; }
|
||||
|
||||
[JsonPropertyName("parentFolderId")]
|
||||
public uint ParentFolderId { get; set; }
|
||||
}
|
@ -340,7 +340,8 @@ public class GameDataService : IGameDataService
|
||||
FolderId = data.FolderId,
|
||||
VerupNo = data.VerupNo,
|
||||
Priority = data.Priority,
|
||||
SongNoes = data.SongNo
|
||||
SongNoes = data.SongNo,
|
||||
ParentFolderId = data.ParentFolderId
|
||||
};
|
||||
|
||||
return responseEventFolderData;
|
||||
|
Loading…
Reference in New Issue
Block a user