mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 15:26:28 +00:00
8 lines
362 B
C#
8 lines
362 B
C#
|
|
namespace AIStudio.Tools.Rust;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Runtime media error containing a stable code and an English log diagnostic.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="Code">Stable machine-readable error category.</param>
|
||
|
|
/// <param name="Message">US-English diagnostic intended for logs.</param>
|
||
|
|
public sealed record MediaJobError(MediaJobErrorCode Code, string Message);
|