mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-22 20:31:36 +00:00
10 lines
224 B
C#
10 lines
224 B
C#
|
|
namespace AIStudio.Tools;
|
||
|
|
|
||
|
|
public sealed class SoundEffectsInitializationResult
|
||
|
|
{
|
||
|
|
public bool Success { get; init; }
|
||
|
|
|
||
|
|
public string[] FailedPaths { get; init; } = [];
|
||
|
|
|
||
|
|
public string? ErrorMessage { get; init; }
|
||
|
|
}
|