Files
llink/go/internal/network/models.go
T
Arjun PatelandGitHub bf0147d542 refactor: reference human id instead of email (#73)
* refactor: update api and client to reference humanIds

* fix: prevent deletion of network member

This may cause various side effects if there is data in other services
which reference this member
2026-03-24 19:48:02 -07:00

20 lines
329 B
Go

package network
import "time"
type Network struct {
ID string
Name string
AdminHumanId string
MemberHumanIds []string
OpenStreamCapacity int
OpenStreamCount int
CreatedAt time.Time
}
type Invitation struct {
NetworkID string
Email string
CreatedAt time.Time
}