Innovenergy_trunk/csharp/Lib/Logging/LogMessage.cs

8 lines
169 B
C#
Raw Normal View History

2023-06-13 11:02:43 +00:00
namespace InnovEnergy.Lib.Logging;
public readonly record struct LogMessage
(
String Message,
HashSet<String> Tags,
Dictionary<String, String> Properties
);