Some checks failed
Deploy to Server (Docker) / deploy (push) Failing after 48s
18 lines
384 B
Go
18 lines
384 B
Go
package project
|
|
|
|
import "task_manager/internal/domain/sprint"
|
|
|
|
type Project struct {
|
|
Id int `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Date string `json:"date"`
|
|
Sprints []sprint.Sprint
|
|
}
|
|
|
|
type UserProjectLink struct {
|
|
Id int `json:"id"`
|
|
IdUser int `json:"id_user"`
|
|
IdProject int `json:"id_project"`
|
|
}
|