3 changed files with 23 additions and 29 deletions
@ -1,17 +1,29 @@ |
|||||
package app.entities; |
package app.entities; |
||||
|
|
||||
public enum VipGiveMethod { |
public enum VipGiveMethod { |
||||
FREE("Бесплатно"), |
FREE("Бесплатно", "Free"), |
||||
STEAM("Steam"), |
STEAM("Steam"), |
||||
QIWI("Qiwi"), |
QIWI("Qiwi"), |
||||
MANUAL("Админ"), |
MANUAL("Админ", "Admin"), |
||||
AFTERTIME("Убрана"), |
AFTERTIME("Убрана"), |
||||
TOTAL("Итого"), |
TOTAL("Итого"), |
||||
DONATIONALERTS("Донейшон Алертс"); |
DONATIONALERTS("Донейшон Алертс", "DonationAlerts"), |
||||
|
PROMOCODE("Промокод", "PromoCode"); |
||||
|
|
||||
String human_name; |
String human_name; |
||||
|
String webhook_name; |
||||
|
|
||||
|
VipGiveMethod(String human_name, String webhook_name) { |
||||
|
this.human_name = human_name; |
||||
|
this.webhook_name = webhook_name; |
||||
|
} |
||||
|
|
||||
VipGiveMethod(String human_name) { |
VipGiveMethod(String human_name) { |
||||
this.human_name = human_name; |
this.human_name = human_name; |
||||
|
this.webhook_name = human_name; |
||||
|
} |
||||
|
|
||||
|
public String getWebhookName() { |
||||
|
return this.webhook_name; |
||||
} |
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue