mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-16 06:05:52 -06:00
10 lines
191 B
C#
10 lines
191 B
C#
namespace PhotoFrame.Logic.UI.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for view models
|
|
/// </summary>
|
|
public interface IViewModel
|
|
{
|
|
void Stop();
|
|
}
|
|
}
|