File: Attributes\PortHandlerAttribute.cs | Web Access |
Project: src\src\Core\src\Core.csproj (Microsoft.Maui) |
#nullable enable using System; namespace Microsoft.Maui { [AttributeUsage(AttributeTargets.All, AllowMultiple = true)] public class PortHandlerAttribute : Attribute { public PortHandlerAttribute() { } public PortHandlerAttribute(string description) { Description = description; } public string? Description { get; set; } } } |