19 lines
412 B
C#
19 lines
412 B
C#
using System;
|
|
|
|
namespace XP.Scan.Attributes
|
|
{
|
|
/// <summary>
|
|
/// 标记 INI Section 名称 | Marks the INI section name
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class IniSectionAttribute : Attribute
|
|
{
|
|
public string SectionName { get; }
|
|
|
|
public IniSectionAttribute(string sectionName)
|
|
{
|
|
SectionName = sectionName;
|
|
}
|
|
}
|
|
}
|