mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 15:26:28 +00:00
5 lines
232 B
C#
5 lines
232 B
C#
|
|
namespace AIStudio.Tools.Rust;
|
||
|
|
|
||
|
|
/// <summary>Response returned after a Rust media job is registered.</summary>
|
||
|
|
/// <param name="JobId">Opaque runtime job identifier.</param>
|
||
|
|
public sealed record CreateMediaJobResponse(string JobId);
|