forked from ebhomengo/niki
13 lines
202 B
Go
13 lines
202 B
Go
|
package entity
|
||
|
|
||
|
type Address struct {
|
||
|
ID uint
|
||
|
PostalCode string
|
||
|
Address string
|
||
|
Lat float32
|
||
|
Lon float32
|
||
|
CityID uint
|
||
|
ProvinceID uint
|
||
|
BenefactorID uint
|
||
|
}
|