Logger (WIP)

This commit is contained in:
ig 2023-06-13 13:02:43 +02:00
parent 9467616f11
commit 9d4c02745d
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
namespace InnovEnergy.Lib.Logging;
public readonly record struct LogMessage
(
String Message,
HashSet<String> Tags,
Dictionary<String, String> Properties
);