NodeFieldConstraintAttribute.cs 276 B

123456789101112131415
  1. using System;
  2. namespace ETModel
  3. {
  4. [AttributeUsage(AttributeTargets.Field)]
  5. public class NodeFieldConstraintAttribute: Attribute
  6. {
  7. public Type[] Types { get; private set; }
  8. public NodeFieldConstraintAttribute(params Type[] types)
  9. {
  10. this.Types = types;
  11. }
  12. }
  13. }