19 lines
528 B
C#
19 lines
528 B
C#
namespace tysdk
|
|
{
|
|
public static class ChannelConfig
|
|
{
|
|
public static string Channel { get; private set; } = "GooglePlay";
|
|
|
|
public static string PayType => Channel switch
|
|
{
|
|
"Rustore" => "rustore.global.app",
|
|
"Flexion" => "flexion.global.app",
|
|
_ => "googleiab.global.app"
|
|
};
|
|
|
|
public static int LoginTimeoutSeconds => Channel == "Rustore" ? 120 : 30;
|
|
|
|
public static void SetChannel(string channel) { Channel = channel; }
|
|
}
|
|
}
|