dcbot/internal/domain/ennoblement_notification.go
Dawid Wysokiński e110807619
All checks were successful
continuous-integration/drone/push Build is passing
refactor: group & monitor refactor (#107)
Reviewed-on: #107
2023-06-18 06:47:51 +00:00

16 lines
314 B
Go

package domain
type EnnoblementNotificationType uint8
const (
EnnoblementNotificationTypeGain EnnoblementNotificationType = iota
EnnoblementNotificationTypeLoss
)
type EnnoblementNotification struct {
Type EnnoblementNotificationType
ServerID string
ChannelID string
Ennoblement Ennoblement
}