initial commit
This commit is contained in:
17
internal/domain/asset/category.go
Normal file
17
internal/domain/asset/category.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package asset
|
||||
|
||||
import (
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type Category struct {
|
||||
ID uuid.UUID
|
||||
Name string
|
||||
Icon string
|
||||
Color string
|
||||
CardType string
|
||||
Featured bool
|
||||
Description string
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user