ReNameAttribute.cs 205 B

123456789101112
  1. using System;
  2. namespace PaySharp.Core
  3. {
  4. /// <summary>
  5. /// 重命名属性
  6. /// </summary>
  7. public class ReNameAttribute : Attribute
  8. {
  9. public string Name { get; set; }
  10. }
  11. }