Files
plexview/Programs/examples/PlexView/Constants.cs
T

15 lines
262 B
C#

using System;
namespace PlexView
{
public static class Constants
{
public static readonly Uri HTTP_URL = new Uri("http://localhost:8080");
public static readonly string CHANNEL = "PlexView Chan1";
public static readonly string VERSION = "V1.1";
}
}