mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 22:02:31 -06:00
10 lines
187 B
C#
10 lines
187 B
C#
using PhotoFrame.Logic.BL;
|
|
|
|
namespace PhotoFrame.Logic.UI.Views
|
|
{
|
|
public interface IView
|
|
{
|
|
void Activate(ViewSwitchType switchType);
|
|
void Deactivate();
|
|
}
|
|
}
|