mirror of
https://github.com/AlexMacocian/Net.Maui.Extensions.git
synced 2026-07-24 12:06:35 +00:00
8 lines
191 B
C#
8 lines
191 B
C#
namespace Net.Maui.Extensions.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class OptionSectionAttribute : Attribute
|
|
{
|
|
public string? SectionName { get; set; }
|
|
}
|