12 lines
280 B
Go
12 lines
280 B
Go
package domain
|
|
|
|
// Person represents a person from the list
|
|
type Person struct {
|
|
Name string `json:"name"`
|
|
Surname string `json:"surname"`
|
|
Gender string `json:"gender"`
|
|
Born int `json:"born"`
|
|
City string `json:"city"`
|
|
Tags []string `json:"tags"`
|
|
}
|