initial commit 2
This commit is contained in:
21
domain/entity/address.go
Normal file
21
domain/entity/address.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package entity
|
||||
|
||||
type Address struct {
|
||||
ID int64
|
||||
UUID string
|
||||
InternalID string
|
||||
Name string
|
||||
Address string
|
||||
AddressType Params
|
||||
Latitude float64
|
||||
Longitude float64
|
||||
Origin Params
|
||||
User User
|
||||
CreatedUser User
|
||||
}
|
||||
|
||||
type Params struct {
|
||||
ID int64
|
||||
Key string
|
||||
Name string
|
||||
}
|
||||
Reference in New Issue
Block a user