* refactor: use interfaces for function params * cleanup message retention code * support open / closed streams - Tabs for viewing separately - Context menu to close / open streams - Update stream particle status field * ui tweak * show stream state in stream-view * ui tweaks * cleanup message retention from orion api
19 lines
322 B
Go
19 lines
322 B
Go
package network
|
|
|
|
import "time"
|
|
|
|
type Network struct {
|
|
ID string
|
|
Name string
|
|
AdminHumanId string
|
|
MemberHumanIds []string
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
type Invitation struct {
|
|
NetworkID string
|
|
NetworkName string
|
|
Email string
|
|
CreatedAt time.Time
|
|
}
|