11 lines
282 B
Go
11 lines
282 B
Go
package models
|
|
|
|
type Poll struct {
|
|
ID int64 `json:"id"`
|
|
Question string `json:"question"`
|
|
TotalVotes int `json:"total_votes"`
|
|
WhoVoted []string `json:"who_voted"`
|
|
CreatedAt string `json:"created_at"`
|
|
UpdatedAt string `json:"updated_at"`
|
|
ExpiresAt string `json:"expires_at"`
|
|
} |