namespace AIStudio.Tools.Rust;
///
/// The data structure for a Tauri event sent from the Rust backend to the C# frontend.
///
/// The type of the Tauri event.
/// The payload of the Tauri event.
public readonly record struct TauriEvent(TauriEventType EventType, List Payload);