mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
14 lines
552 B
C#
14 lines
552 B
C#
namespace Remotely.Shared;
|
|
|
|
public class AppConstants
|
|
{
|
|
public const string DefaultProductName = "Remotely";
|
|
public const string DefaultPublisherName = "Immense Networks";
|
|
public const string DebugOrgId = "e8f4ad87-4a4b-4da1-bcb2-1788eaeb80e8";
|
|
public const int EmbeddedDataBlockLength = 256;
|
|
public const long MaxUploadFileSize = 100_000_000;
|
|
public const double ScriptRunExpirationMinutes = 30;
|
|
public const string ApiKeyHeaderName = "X-Api-Key";
|
|
public const string ExpiringTokenHeaderName = "X-Expiring-Token";
|
|
}
|