18 lines
214 B
Go
18 lines
214 B
Go
package preference
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Preference struct {
|
|
ID uuid.UUID
|
|
UserID uuid.UUID
|
|
Name string
|
|
Value string
|
|
Type string
|
|
Description string
|
|
}
|
|
|
|
|
|
|