mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
11 lines
241 B
Go
11 lines
241 B
Go
package models
|
|
|
|
type Address struct {
|
|
Address1 string `json:"address1"`
|
|
Address2 string `json:"address2"`
|
|
City string `json:"city"`
|
|
ZipCode string `json:"zipCode"`
|
|
State string `json:"state"`
|
|
Country string `json:"country"`
|
|
}
|