Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IModel.cs
1using System.ComponentModel;
2using System.Threading.Tasks;
3
4namespace LegalLab.Models
5{
9 public interface IModel : INotifyPropertyChanged
10 {
15 void RaisePropertyChanged(string PropertyName);
16
20 Task Start();
21
25 Task Stop();
26
30 bool Started { get; }
31 }
32}