123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Common
- {
-
-
-
-
- public class MarkAttribute : Attribute
- {
- private string _name;
- public MarkAttribute(string name)
- {
- this._name = name;
- }
- public string Name
- {
- get { return _name; }
- }
- }
- public class Key : Attribute
- {
- private string _name;
- public Key(string name)
- {
- this._name = name;
- }
- public string Name
- {
- get { return _name; }
- }
- }
- public class OtherAttribute : Attribute
- {
- private string _name;
- public OtherAttribute(string name)
- {
- this._name = name;
- }
- public string Name
- {
- get { return _name; }
- }
- }
-
-
-
- public class Jm : Attribute{ }
-
-
-
- public class Yz : Attribute { }
- }
|