10 lines
367 B
Go
10 lines
367 B
Go
package models
|
|
|
|
type Organization struct {
|
|
OriginBase
|
|
|
|
Name *string `json:"name,omitempty"` //name String (optional) The name of the organization
|
|
Address Address `json:"address,omitempty" gorm:"serializer:json;default:'{}'"` //address String (optional) Address of the provider
|
|
Active *bool `json:"active,omitempty"`
|
|
}
|