mirror of
https://e.coding.net/circlecloud/CTZLauncher.git
synced 2024-11-15 00:58:50 +00:00
6e0fa413d2
Signed-off-by: j502647092 <jtb1@163.com>
19 lines
366 B
C#
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;
|
|
}
|
|
}
|
|
}
|