mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-14 14:16:15 +01:00
22 lines
418 B
Go
22 lines
418 B
Go
package structures
|
|
|
|
type UserDetails struct {
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type UIDName struct {
|
|
UID string `json:"user_id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type GenericResponse struct {
|
|
Status string `json:"status"`
|
|
}
|
|
|
|
type Comment struct {
|
|
CommentID string `json:"comment_id"`
|
|
UID string `json:"user_id"`
|
|
Name string `json:"name"`
|
|
Comment string `json:"comment"`
|
|
Date string `json:"date"`
|
|
}
|