13 lines
155 B
Go
13 lines
155 B
Go
|
package models
|
||
|
|
||
|
type Question struct {
|
||
|
Title string
|
||
|
Description string
|
||
|
Buttons []Button
|
||
|
}
|
||
|
|
||
|
type Button struct {
|
||
|
Text string
|
||
|
State string
|
||
|
}
|