go-mstdn/ent/polloption.go

13 lines
273 B
Go
Raw Normal View History

2023-09-26 09:45:44 +00:00
package ent
import (
"sourcecode.social/reiver/go-jsonint"
"sourcecode.social/reiver/go-opt"
"sourcecode.social/reiver/go-nul"
)
type PollOption struct {
Title opt.Optional[string] `json:"title"`
VotesCount nul.Nullable[jsonint.Int] `json:"votes_count"`
}