using System;
namespace CPF.Windows.Json
{
///
/// 别名,标记于字段或属性上的特性
/// Alias,Characteristics marked on fields or property
///
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class AliasAttribute : Attribute
{
internal string _name { get; set; }
///
/// Structural aliases
///
///
public AliasAttribute(string name)
{
_name = name;
}
}
}