1
0
mirror of https://e.coding.net/circlecloud/CTZLauncher.git synced 2024-10-03 17:58:54 +00:00
CTZLauncher/KMCCC.Shared/LitJson/JsonPropertyName.cs
j502647092 6e0fa413d2 首次提交项目文件...
Signed-off-by: j502647092 <jtb1@163.com>
2015-07-29 19:56:27 +08:00

19 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LitJson
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
public class JsonPropertyName : Attribute
{
public String Name { get; private set; }
public JsonPropertyName(String name)
{
this.Name = name;
}
}
}