json output fix

This commit is contained in:
2026-03-01 19:56:46 +01:00
parent 7623abb01d
commit ea9643bcb2
2 changed files with 10 additions and 10 deletions
+5 -5
View File
@@ -11,14 +11,14 @@ type SoftwareListDTO struct {
}
type SoftwareDetaildListDTO struct {
Softwares []SoftwareShowData
Softwares []SoftwareShowData `json:"softwares"`
}
type SoftwareShowData struct {
Software *Software
Releases []Release
LatestRelease *Release
WebPlayableRelease *Release
Software *Software `json:"software"`
Releases []Release `json:"releases"`
LatestRelease *Release `json:"latestRelease"`
WebPlayableRelease *Release `json:"webPlayableRelease"`
}
type SoftwareServiceInterface interface {