18 lines
532 B
Go
18 lines
532 B
Go
package viewmodel
|
|
|
|
import "time"
|
|
|
|
type Profile struct {
|
|
ID int64 `json:"-"`
|
|
Name string `json:"name"`
|
|
Key string `json:"key"`
|
|
Description string `json:"desc"`
|
|
Created time.Time `json:"created"`
|
|
Updated time.Time `json:"updated"`
|
|
Active bool `json:"active"`
|
|
Blocked bool `json:"blocked"`
|
|
Suspended bool `json:"suspended"`
|
|
Visible bool `json:"visible"`
|
|
Organization Organization `json:"organization"`
|
|
}
|