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

11 lines
209 B
C#

namespace AIStudio.Tools.Rust;
public readonly record struct LogEventRequest(
string Timestamp,
string Level,
string Category,
string Message,
string? Exception,
string? StackTrace
);