7 lines
94 B
Go
7 lines
94 B
Go
|
package types
|
||
|
|
||
|
type Project struct {
|
||
|
ID int `json:"id"`
|
||
|
Title string `json:"title"`
|
||
|
}
|