using SharedLibraryCore.Interfaces; using System; using System.Collections.Generic; using System.Text; namespace IW4MAdmin.Application { /// /// implementatin of IPageList that supports basic /// pages title and page location for webfront /// class PageList : IPageList { /// /// Pages dictionary /// Key = page name /// Value = page location (url) /// public IDictionary Pages { get; set; } public PageList() { Pages = new Dictionary(); } } }