UpdatePropertyAttribute.cs 417 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Uestc.Auto6.Dso.Protocol
  7. {
  8. [AttributeUsage(AttributeTargets.Method)]
  9. public class UpdatePropertyAttribute : Attribute
  10. {
  11. public UpdatePropertyAttribute(string propertyName) => this.PropertyName = propertyName;
  12. public String PropertyName { get; set; }
  13. }
  14. }