IW4M-Admin/SharedLibraryCore/Interfaces/IPageList.cs

12 lines
213 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Interfaces
{
public interface IPageList
{
IDictionary<string, string> Pages { get; set; }
}
}