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

11 lines
209 B
C#
Raw Normal View History

2026-01-13 17:45:47 +00:00
namespace AIStudio.Tools.Rust;
public readonly record struct LogEventRequest(
string Timestamp,
string Level,
string Category,
string Message,
string? Exception,
string? StackTrace
);