feat(model): project model

This commit is contained in:
Guz
2025-06-09 19:23:21 -03:00
parent 41a764939b
commit 347a734df9

15
model/project.go Normal file
View File

@@ -0,0 +1,15 @@
package model
import (
"time"
"github.com/google/uuid"
)
type Project struct {
UUID uuid.UUID // Must be unique, represented as base64 string in URLs
Title string // Must not be empty
DateCreated time.Time
DateUpdated time.Time
}