mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-08-02 18:17:31 +08:00
13 lines
317 B
C#
13 lines
317 B
C#
namespace NetAdmin.Infrastructure.Attributes;
|
|
|
|
/// <summary>
|
|
/// 域名特性
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Enum)]
|
|
public sealed class DomainAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 主机名称
|
|
/// </summary>
|
|
public string HostName { get; init; }
|
|
} |