21 lines
304 B
Go
21 lines
304 B
Go
package core
|
|
|
|
type OutboundContactRequestStatus int
|
|
|
|
const (
|
|
RequestPending OutboundContactRequestStatus = iota
|
|
RequestAcknowledged
|
|
RequestAccepted
|
|
RequestRejected
|
|
RequestError
|
|
)
|
|
|
|
type OutboundContactRequest struct {
|
|
Contact
|
|
|
|
MyName string
|
|
Message string
|
|
|
|
Status OutboundContactRequestStatus
|
|
}
|