NodeAttribute.cs 251 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 type)
  9. {
  10. this.Type = type;
  11. }
  12. }
  13. }