8 lines
74 B
Go
8 lines
74 B
Go
|
package models
|
||
|
|
||
|
type Pronoun struct {
|
||
|
Id int
|
||
|
Plural bool
|
||
|
Word string
|
||
|
}
|