label models

This commit is contained in:
nquidox 2026-03-11 20:33:50 +03:00
parent e503f67bc9
commit 40e441cb34
2 changed files with 45 additions and 3 deletions

View file

@ -50,3 +50,21 @@ type taskData struct {
OriginName string
Url string
}
type Label struct {
Id int64
CreatedAt time.Time
UpdatedAt sql.NullTime
DeletedAt sql.NullTime
UserId int64
Uuid string
Name string
Color string
BgColor string
}
type CardLabel struct {
LabelUuid string
UserUuid string
MerchUuid string
}