mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 15:26:28 +00:00
7 lines
450 B
C#
7 lines
450 B
C#
|
|
namespace AIStudio.Tools.Rust;
|
||
|
|
|
||
|
|
/// <summary>Request body used to start a Rust media normalization job.</summary>
|
||
|
|
/// <param name="InputPath">Absolute source media path.</param>
|
||
|
|
/// <param name="OutputPath">Absolute operation-owned output path.</param>
|
||
|
|
/// <param name="MaxPassThroughBytes">Optional pass-through size ceiling.</param>
|
||
|
|
public sealed record CreateMediaJobRequest(string InputPath, string OutputPath, ulong? MaxPassThroughBytes = null);
|