dcbot/internal/domain/ennoblement_notification.go

16 lines
286 B
Go
Raw Normal View History

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