16 lines
371 B
C#
16 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BookAStar.Interfaces
|
|
{
|
|
public interface IModelViewModel : INotifyPropertyChanged
|
|
{
|
|
string Title { get; set; }
|
|
|
|
void SetState<T>(Action<T> action) where T : class, IModelViewModel;
|
|
}
|
|
}
|