initial commit 2
This commit is contained in:
15
application/viewmodel/address.go
Normal file
15
application/viewmodel/address.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package viewmodel
|
||||
|
||||
type Address struct {
|
||||
UUID string `json:"address_uuid,omitempty"`
|
||||
InternalID string `json:"id,omitempty"`
|
||||
Name string `json:"name,omitempty"`
|
||||
Address string `json:"address,omitempty"`
|
||||
AddressType string `json:"address_type,omitempty"`
|
||||
AddressTypeName string `json:"address_type_name,omitempty"`
|
||||
Latitude float64 `json:"lat,omitempty"`
|
||||
Longitude float64 `json:"lng,omitempty"`
|
||||
Type string `json:"type,omitempty"`
|
||||
User User `json:"user,omitempty"`
|
||||
CreatedUserUUID string `json:"-"`
|
||||
}
|
||||
Reference in New Issue
Block a user