mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 22:02:31 -06:00
9 lines
162 B
C#
9 lines
162 B
C#
using PhotoFrame.Logic.BL;
|
|
|
|
namespace PhotoFrame.Logic.UI.Views
|
|
{
|
|
public interface IViewManager
|
|
{
|
|
IView CreateView(ViewType viewType);
|
|
}
|
|
}
|