1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
-
- using System;
- namespace Topten.JsonKit
- {
-
-
-
-
-
-
-
-
-
-
-
-
- [AttributeUsage(AttributeTargets.Enum)]
- public class JsonUnknownAttribute : Attribute
- {
- public JsonUnknownAttribute(object unknownValue)
- {
- UnknownValue = unknownValue;
- }
- public object UnknownValue
- {
- get;
- private set;
- }
- }
- }
|