Files
XplorePlane/XP.Scan/Attributes/IniKeyAttribute.cs
T
2026-04-22 15:16:43 +08:00

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;
}
}
}