dcbot/internal/domain/ennoblement_notification.go

17 lines
334 B
Go

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