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