1234567891011121314151617181920212223242526272829303132 |
-
- using System;
- namespace Topten.JsonKit
- {
-
-
-
- [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
- public class JsonExcludeAttribute : Attribute
- {
-
-
-
- public JsonExcludeAttribute()
- {
- }
- }
- }
|