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