mirror of
https://github.com/AlexMacocian/Net.Sdk.Web.Extensions.git
synced 2026-07-17 22:49:29 +00:00
7 lines
183 B
C#
7 lines
183 B
C#
namespace AspNetCore.Extensions.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class OptionsNameAttribute : Attribute
|
|
{
|
|
public string? Name { get; set; }
|
|
} |