
* refact: generalized back end structs * refact: fixed front end type, removed dead code * removed test image folder * refact: removed dead structs
9 lines
174 B
Go
9 lines
174 B
Go
package entities
|
|
|
|
type Organization struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
LogoPath string `json:"logoPath"`
|
|
Users []User `json:"users"`
|
|
}
|