mirror of
https://github.com/TechplexEngineer/plexview.git
synced 2026-07-27 22:15:37 +00:00
15 lines
262 B
C#
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";
|
|
}
|
|
}
|
|
|