WASAPhoto/service/structures/api-structures.go

11 lines
157 B
Go
Raw Normal View History

2022-11-18 17:18:46 +01:00
package structures
type UserDetails struct {
Name string `json:"name"`
}
2022-11-18 18:58:12 +01:00
type UIDName struct {
UID string `json:"user_id"`
Name string `json:"name"`
}