Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ISemanticElement.cs
1using System;
3
5{
9 public interface ISemanticElement : IComparable, IElement
10 {
14 object Tag { get; set; }
15
19 bool IsLiteral { get; }
20 }
21}
Interface for semantic nodes.
object Tag
Property used by processor, to tag information to an element.
bool IsLiteral
If element is a literal.
Basic interface for all types of elements.
Definition: IElement.cs:20