forked from sim0n00ps/OF-DL
19 lines
464 B
C#
19 lines
464 B
C#
namespace OF_DL.Helpers;
|
|
|
|
public static class Constants
|
|
{
|
|
public const string DiscordInviteUrl = "https://discord.com/invite/6bUW8EJ53j";
|
|
|
|
public const string DocumentationUrl = "https://docs.ofdl.tools/";
|
|
|
|
public const string ApiUrl = "https://onlyfans.com/api2/v2";
|
|
|
|
public const int ApiPageSize = 50;
|
|
|
|
public const int WidevineRetryDelay = 10;
|
|
|
|
public const int WidevineMaxRetries = 3;
|
|
|
|
public const int DrmDownloadMaxRetries = 3;
|
|
}
|