merch-api/internal/merch/model.go
2026-02-23 20:47:10 +03:00

16 lines
212 B
Go

package merch
import (
"database/sql"
"time"
)
type Merch struct {
Id uint
CreatedAt time.Time
UpdatedAt sql.NullTime
DeletedAt sql.NullTime
MerchUuid string
UserId string
Name string
}