19 lines
238 B
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
|
||
|
}
|