WIP
This commit is contained in:
parent
54b057886c
commit
7fc1ae0650
204 changed files with 4345 additions and 134 deletions
12
PlanTempus.Core/Telemetry/TelemetryExtensions.cs
Normal file
12
PlanTempus.Core/Telemetry/TelemetryExtensions.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace PlanTempus.Core.Telemetry;
|
||||
|
||||
public static class TelemetryExtensions
|
||||
{
|
||||
public static Dictionary<string, string> Format(this object obj)
|
||||
{
|
||||
return new Dictionary<string, string> { { "Object", JObject.FromObject(obj).ToString() } };
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue