20 lines
422 B
C#
20 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.AspNetCore.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; }
|
|
|
|
public bool RepresentsScope { get; set; }
|
|
}
|
|
} |