dcbot/internal/domain/ennoblement_notification.go
Dawid Wysokiński 4012bd0a2f
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
feat: notifications - i18n (#112)
Reviewed-on: #112
2023-06-30 05:09:52 +00:00

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
}