NodeAttribute.cs 259 B

123456789101112131415
  1. using System;
  2. namespace Model
  3. {
  4. [AttributeUsage(AttributeTargets.Class)]
  5. public class NodeAttribute: Attribute
  6. {
  7. public NodeType Type { get; private set; }
  8. public NodeAttribute(NodeType nodeType)
  9. {
  10. this.Type = nodeType;
  11. }
  12. }
  13. }