You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
714 B
29 lines
714 B
package net.pokeranalytics.android.util
|
|
|
|
/**
|
|
* URL enum
|
|
*/
|
|
enum class URL(var value: String) {
|
|
|
|
// Terms
|
|
PRIVACY_POLICY("https://www.poker-analytics.net/privacypolicy.html"),
|
|
TERMS("https://www.poker-analytics.net/terms.html"),
|
|
|
|
// Social Network
|
|
BLOG("http://www.poker-analytics.net/blog"),
|
|
INSTAGRAM("https://www.instagram.com/pokeranalytics"),
|
|
TWITTER("https://twitter.com/paapptweet"),
|
|
FACEBOOK("https://www.facebook.com/171053452998758"),
|
|
|
|
// Support
|
|
SUPPORT_EMAIL("support@pokeranalytics.net"),
|
|
|
|
// CurrencyCode Converter API
|
|
API_CURRENCY_CONVERTER("https://free.currconv.com/api/v7/"),
|
|
|
|
// Poker Rumble
|
|
POKER_RUMBLE("https://www.pokerrumble.net"),
|
|
DISCORD("https://discord.gg/RwQXctJ")
|
|
|
|
}
|
|
|
|
|