mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
9 lines
155 B
C#
9 lines
155 B
C#
using System.Diagnostics;
|
|
|
|
public interface ITraceableMessage
|
|
{
|
|
public ActivitySpanId? ParentSpan {get;}
|
|
public ActivityTraceId? ParentTrace {get;}
|
|
}
|
|
|