aspnetcore/src/Microsoft.HttpRepl/Diagnostics/DiagItem.cs

12 lines
224 B
C#

namespace Microsoft.HttpRepl.Diagnostics
{
public class DiagItem
{
public string DisplayName { get; set; }
public string Description { get; set; }
public string Url { get; set; }
}
}