mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
12 lines
205 B
Go
12 lines
205 B
Go
package v1
|
|
|
|
type ProjectsViewModel struct {
|
|
Data []*Project `json:"data"`
|
|
}
|
|
|
|
type Project struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Repository string `json:"repository"`
|
|
}
|