19 lines
456 B
C#
19 lines
456 B
C#
using System;
|
|
|
|
namespace XP.Scan.Attributes
|
|
{
|
|
/// <summary>
|
|
/// 标记 INI Key 名称(可选,默认使用属性名)| Marks the INI key name (optional, defaults to property name)
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class IniKeyAttribute : Attribute
|
|
{
|
|
public string KeyName { get; }
|
|
|
|
public IniKeyAttribute(string keyName)
|
|
{
|
|
KeyName = keyName;
|
|
}
|
|
}
|
|
}
|