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