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