package entity

type Project struct {
	ProjectId          string `json:"projectId"`
	AlgorithmObjectKey string `json:"algorithmObjectKey"`
	UserId             string `json:"userId"`
	Parallelism        int    `json:"parallelism"`
	Tasks              []Task `json:"tasks"`
}