diff --git a/internal/merch/model.go b/internal/merch/model.go index 3344354..c09055f 100644 --- a/internal/merch/model.go +++ b/internal/merch/model.go @@ -1 +1,16 @@ 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 +}