PlanTempusApp/PlanTempus.Core/Telemetry/TelemetryExtensions.cs

12 lines
317 B
C#
Raw Permalink Normal View History

2025-03-06 00:05:58 +01:00
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() } };
}
}