8 lines
169 B
C#
8 lines
169 B
C#
|
namespace InnovEnergy.Lib.Logging;
|
||
|
|
||
|
public readonly record struct LogMessage
|
||
|
(
|
||
|
String Message,
|
||
|
HashSet<String> Tags,
|
||
|
Dictionary<String, String> Properties
|
||
|
);
|