Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IModel.cs
1
using
System.ComponentModel;
2
using
System.Threading.Tasks;
3
4
namespace
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
}
LegalLab.Models.IModel
Interface for view models
Definition:
IModel.cs:10
LegalLab.Models.IModel.Start
Task Start()
Starts the model.
LegalLab.Models.IModel.RaisePropertyChanged
void RaisePropertyChanged(string PropertyName)
Raises the PropertyChanged event.
LegalLab.Models.IModel.Stop
Task Stop()
Stops the model.
LegalLab.Models.IModel.Started
bool Started
If the model has been started.
Definition:
IModel.cs:30
LegalLab.Models
Definition:
Command.cs:7
LegalLab
LegalLab
Models
IModel.cs
Generated by
1.9.5