mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
15 lines
329 B
Go
15 lines
329 B
Go
package dtos
|
|
|
|
type UpdateOrgForm struct {
|
|
Name string `json:"name" binding:"Required"`
|
|
}
|
|
|
|
type UpdateOrgAddressForm 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"`
|
|
}
|