dto.go 253 B

123456789101112131415
  1. package goimap
  2. type CommandResponseType uint8
  3. const (
  4. SUCCESS CommandResponseType = 0
  5. BAD CommandResponseType = 1
  6. NO CommandResponseType = 2
  7. )
  8. type CommandResponse struct {
  9. Type CommandResponseType
  10. Message string
  11. Data []string
  12. }