using System.Collections.Generic;
using SharedLibraryCore.Interfaces;
namespace IW4MAdmin.Application.Misc
{
///
/// 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();
}
}
}