initial commits

master
Charles Iliya Krempeaux 2023-09-26 18:54:40 +09:00
parent 0cb619709c
commit d9d479324d
1 changed files with 20 additions and 0 deletions

20
ent/poll.go 100644
View File

@ -0,0 +1,20 @@
package ent
import (
"sourcecode.social/reiver/go-jsonint"
"sourcecode.social/reiver/go-opt"
"sourcecode.social/reiver/go-nul"
)
type Poll struct {
ID opt.Optional[string] `json:"id"`
ExpiresAt nul.Nullable[string] `json:"expires_at"`
Expired opt.Optional[bool] `json:"expired"`
Multiple opt.Optional[bool] `json:"multiple"`
VotesCount opt.Optional[jsonint.Int] `json:"votes_count"`
VotersCount opt.Optional[jsonint.Int] `json:"voters_count"`
Options []PollOption `json:"options"`
Emojis []CustomEmoji `json:"emojis"`
Voted opt.Optional[bool] `json:"voted"`
OwnVotes []jsonint.Int `json:"own_votes"`
}