Newer
Older
TestingWithoutInterfaces / src / BlazorShared / Attributes / EndpointAttribute.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 138 bytes Init
using System;

namespace BlazorShared.Attributes;

public class EndpointAttribute : Attribute
{
    public string Name { get; set; }
}