Files
go-sjles-pta-vote/server/models/poll.go

11 lines
280 B
Go

package models
type Poll struct {
ID int `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"`
}