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