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 AllowedExtensions = new List { ".png", ".jpg", ".jpeg", ".gif", ".ico", ".wav", ".mp3", ".ogg", ".mp4", ".webm", ".webp", ".mkv", ".avi" }; } }