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; } } }