ricochet-go/core/contact.go

19 lines
238 B
Go

package core
type ContactStatus int
const (
ContactOnline ContactStatus = iota
ContactOffline
ContactRequestPending
ContactRequestRejected
ContactOutdated
)
type Contact struct {
InternalId int
Name string
Address string
}