forked from sim0n00ps/OF-DL
15 lines
307 B
C#
15 lines
307 B
C#
namespace OF_DL.Helpers;
|
|
|
|
public static class Constants
|
|
{
|
|
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;
|
|
}
|