10 lines
444 B
C#
10 lines
444 B
C#
namespace WidevineClient.Widevine
|
|
{
|
|
public class Constants
|
|
{
|
|
public static string WORKING_FOLDER { get; set; } = System.IO.Path.GetFullPath(System.IO.Path.Join(System.IO.Directory.GetCurrentDirectory(), "cdm"));
|
|
public static string DEVICES_FOLDER { get; set; } = System.IO.Path.GetFullPath(System.IO.Path.Join(WORKING_FOLDER, "devices"));
|
|
public static string DEVICE_NAME { get; set; } = "chrome_1610";
|
|
}
|
|
}
|