123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Venus_Core.Attributes
- {
- public class IsOnlyReadAttribute:Attribute
- {
- }
- public class IsCanConfigIgnore : Attribute
- {
-
- }
- public class IsTolerance : Attribute
- {
- }
- public class CustomName : Attribute
- {
- public string Name { get; set; }
- public CustomName(string name)
- {
- Name = name;
- }
- }
- }
|