SecsDataRootAttribute.cs 379 B

1234567891011121314
  1. using System;
  2. namespace MECF.Framework.Common.FAServices.SecsDataAttribute
  3. {
  4. /// <summary>
  5. /// 用于DVID为List的情况,需对需要展示给Host端的类或者属性加上此特性
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = true)]
  8. public class SecsDataRootAttribute : Attribute
  9. {
  10. }
  11. }