11 lines
226 B
C#
11 lines
226 B
C#
using System.ComponentModel;
|
|
|
|
namespace TheXamlGuy.Framework.Core
|
|
{
|
|
public interface IObservableViewModel : INotifyDataErrorInfo, IDisposable
|
|
{
|
|
void Initialize();
|
|
|
|
bool IsInitialized { get; }
|
|
}
|
|
} |