ScriptStack 1.0.4
Loading...
Searching...
No Matches
Model.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Collections.ObjectModel;
4using System.Text;
5
8
10{
11 /*
89 */
90 public interface Model : Host
91 {
92
96 ReadOnlyCollection<Routine> Routines { get; }
97
98 }
99}
The main interface to create a Host. A Host can implement Routine's to extend its functionality.
Definition Host.cs:80
ReadOnlyCollection< Routine > Routines
Returns all Routine's a Model implements.
Definition Model.cs:96