14 lines
636 B
C#
14 lines
636 B
C#
using System.Collections.Generic;
|
|
|
|
namespace VAR.Focus.Web
|
|
{
|
|
public static class Globals
|
|
{
|
|
public const string Title = "Focus";
|
|
public const string TitleSeparator = " :: ";
|
|
public const string Author = "Valeriano Alfonso Rodriguez";
|
|
public const string Copyright = "Copyright (c) 2015-2018 by Valeriano Alfonso, All Right Reserved";
|
|
public const string DefaultHandler = "FrmBoard";
|
|
public static List<string> AllowedExtensions = new List<string> { ".png", ".jpg", ".jpeg", ".gif", ".ico", ".wav", ".mp3", ".ogg", ".mp4", ".webm", ".webp", ".mkv", ".avi" };
|
|
}
|
|
} |