mirror of
https://github.com/Dvorinka/MyClubServer.git
synced 2026-06-04 02:32:57 +00:00
11 lines
276 B
Go
11 lines
276 B
Go
package models
|
|
|
|
// ClubSearchResult represents a club search result from FACR API
|
|
type ClubSearchResult struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
LogoURL string `json:"logo_url"`
|
|
Category string `json:"category"`
|
|
}
|