mirror of
https://github.com/jie65535/ChineseChess.git
synced 2024-07-27 18:55:00 +08:00
13 lines
218 B
C#
13 lines
218 B
C#
using System;
|
|
using System.Windows.Controls;
|
|
|
|
namespace ChineseChess.GUI.Contracts.Services
|
|
{
|
|
public interface IPageService
|
|
{
|
|
Type GetPageType(string key);
|
|
|
|
Page GetPage(string key);
|
|
}
|
|
}
|