mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-21 12:23:10 +00:00
7 lines
126 B
C#
7 lines
126 B
C#
namespace TemplateStudioSampleApp.Contracts.Services;
|
|
|
|
public interface IPageService
|
|
{
|
|
Type GetPageType(string key);
|
|
}
|