AI-Studio/app/MindWork AI Studio/Tools/Rust/LogEventRequest.cs

11 lines
209 B
C#
Raw Normal View History

2026-01-13 09:00:36 +00:00
namespace AIStudio.Tools.Rust;
public readonly record struct LogEventRequest(
string Timestamp,
string Level,
string Category,
string Message,
2026-01-13 12:08:19 +00:00
string? Exception,
string? StackTrace
2026-01-13 09:00:36 +00:00
);