Files
base/internal/domain/preference/preference.go
2026-04-10 18:25:21 +03:30

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
}