17 lines
170 B
Go
17 lines
170 B
Go
package db
|
|
|
|
type Ownership struct {
|
|
ID uint
|
|
|
|
Player string
|
|
Trusted string
|
|
Assistant string
|
|
}
|
|
|
|
type OwnershipString struct {
|
|
ID uint
|
|
|
|
Key string
|
|
Value int
|
|
}
|