11 lines
277 B
Go
11 lines
277 B
Go
package models
|
|
|
|
type Poll struct {
|
|
ID int `json:"id"`
|
|
Question string `json:"Question"`
|
|
Options []string `json:"options"`
|
|
TotalVotes int `json:"total_votes"`
|
|
WhoVoted []string `json:"who_voted"`
|
|
CreatedAt string `json:"created_at"`
|
|
UpdatedAt string `json:"updated_at"`
|
|
} |