lib/app/address.go

13 lines
203 B
Go
Raw Permalink Normal View History

2021-01-10 23:44:39 +00:00
package app
// Address address struct
type Address struct {
City string
Country string
CountryCode string
PostalCode string
State string
StateCode string
Street string
}