IsOnlyReadAttribute.cs 512 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Venus_Core.Attributes
  7. {
  8. public class IsOnlyReadAttribute:Attribute
  9. {
  10. }
  11. public class IsCanConfigIgnore : Attribute
  12. {
  13. }
  14. public class IsTolerance : Attribute
  15. {
  16. }
  17. public class CustomName : Attribute
  18. {
  19. public string Name { get; set; }
  20. public CustomName(string name)
  21. {
  22. Name = name;
  23. }
  24. }
  25. }