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

10 lines
185 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,
string? Exception
);