source: code/Website/dot-net-library/written-by-xiao-yifang/OpenFlashChart/JSON/JsonPropertyAttribute.cs@ 7849

Last change on this file since 7849 was 7849, checked in by dennisw, 15 years ago
File size: 404 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace JsonFx.Json
6{
7 [AttributeUsage(AttributeTargets.All, AllowMultiple=false)]
8 public class JsonPropertyAttribute:JsonNameAttribute
9 {
10 public JsonPropertyAttribute():base()
11 { }
12 public JsonPropertyAttribute(string jsonname):base(jsonname)
13 {
14
15 }
16 }
17}
Note: See TracBrowser for help on using the repository browser.