initial page
This commit is contained in:
14
domain/project.go
Normal file
14
domain/project.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package domain
|
||||
|
||||
import "time"
|
||||
|
||||
type Project struct {
|
||||
Name string `json:"name"`
|
||||
Start time.Time `json:"start"`
|
||||
End time.Time `json:"end"`
|
||||
Stack []string `json:"stack"`
|
||||
Description string `json:"description"`
|
||||
Thumbnail string `json:"thumbnail"`
|
||||
GithubLink string `json:"github_link"`
|
||||
Status string `json:"status"`
|
||||
}
|
||||
Reference in New Issue
Block a user