10 lines
297 B
Go
10 lines
297 B
Go
package common
|
|
|
|
type CarToDriverModel struct {
|
|
User UserProfile `json:"user,omitempty"`
|
|
DriverID string `json:"driver_id"`
|
|
Role string `json:"role"`
|
|
Settings []CarSetting `json:"settings"`
|
|
Subscriptions []Subscription `json:"subscriptions"`
|
|
}
|