IW4M-Admin/SharedLibraryCore/Interfaces/IPageList.cs

9 lines
179 B
C#
Raw Normal View History

2022-01-26 11:32:16 -05:00
using System.Collections.Generic;
namespace SharedLibraryCore.Interfaces
{
public interface IPageList
{
IDictionary<string, string> Pages { get; set; }
}
2022-01-26 11:32:16 -05:00
}