package model import "time" type Category struct { ID int `json:"id"` Name string `json:"name"` Color string `json:"color"` IsDefault bool `json:"is_default"` IsTax bool `json:"is_tax"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` } type CategoryInput struct { Name string `json:"name"` Color string `json:"color"` IsTax bool `json:"is_tax"` }