Neodroid  0.2.0
Machine Learning Environment Prototyping Tool
Displayable.cs
Go to the documentation of this file.
1 namespace droid.Runtime.Messaging.Messages.Displayables {
4  public abstract class Displayable {
7  public virtual string DisplayableName { get; set; }
8 
11  public virtual dynamic DisplayableValue { get; set; }
12 
16  public override string ToString() {
17  return $"<Displayable> {this.DisplayableName}, {this.DisplayableValue} </Displayable>";
18  }
19  }
20 }