aspnetcore/src/Microsoft.AspNet.Diagnostic.../ActivityContext.cs

18 lines
370 B
C#

using System;
using System.Collections.Generic;
namespace Microsoft.AspNet.Diagnostics.Elm
{
public class ActivityContext
{
public Guid Id { get; set; }
public HttpInfo HttpInfo { get; set; }
public ScopeNode Root { get; set; }
public DateTimeOffset Time { get; set; }
public bool IsCollapsed { get; set; }
}
}