Files
2022-11-01 15:26:08 +00:00

11 lines
226 B
C#

using System.ComponentModel;
namespace TheXamlGuy.Framework.Core
{
public interface IObservableViewModel : INotifyDataErrorInfo, IDisposable
{
void Initialize();
bool IsInitialized { get; }
}
}