11 lines
258 B
C#
11 lines
258 B
C#
using System.Collections.Generic;
|
|
|
|
namespace QuestPDF.Infrastructure
|
|
{
|
|
public interface IPageContext
|
|
{
|
|
void SetLocationPage(string key);
|
|
int GetLocationPage(string key);
|
|
ICollection<string> GetRegisteredLocations();
|
|
}
|
|
} |