mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 06:41:37 +00:00
11 lines
209 B
C#
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
|
||
|
|
);
|