initial commit
This commit is contained in:
17
internal/domain/preference/preference.go
Normal file
17
internal/domain/preference/preference.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package preference
|
||||
|
||||
import (
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
type Preference struct {
|
||||
ID uuid.UUID
|
||||
UserID uuid.UUID
|
||||
Name string
|
||||
Value string
|
||||
Type string
|
||||
Description string
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user