1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
-
- using System;
- namespace Topten.JsonKit
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Property | AttributeTargets.Field)]
- public class JsonAttribute : Attribute
- {
- public JsonAttribute()
- {
- _key = null;
- }
- public JsonAttribute(string key)
- {
- _key = key;
- }
-
- string _key;
- public string Key
- {
- get { return _key; }
- }
-
-
- public bool KeepInstance
- {
- get;
- set;
- }
-
-
-
- public bool Deprecated
- {
- get;
- set;
- }
- }
- }
|