mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
21 lines
259 B
Go
21 lines
259 B
Go
package db
|
|
|
|
type Project struct {
|
|
ID int
|
|
Name string
|
|
Description string
|
|
}
|
|
|
|
type Task struct {
|
|
ID int
|
|
Name string
|
|
Description string
|
|
Priority uint8
|
|
IsDone bool
|
|
}
|
|
|
|
type ProjectTask struct {
|
|
Task
|
|
ProjectID int
|
|
}
|