AI-Studio/app/MindWork AI Studio/Tools/SoundEffectsInitializationResult.cs

10 lines
224 B
C#
Raw Normal View History

namespace AIStudio.Tools;
public sealed class SoundEffectsInitializationResult
{
public bool Success { get; init; }
public string[] FailedPaths { get; init; } = [];
public string? ErrorMessage { get; init; }
}