mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
8 lines
178 B
C#
8 lines
178 B
C#
namespace AudioCore.Models;
|
|
|
|
public class StemSeparationRequest
|
|
{
|
|
public string SourceFilePath { get; init; } = "";
|
|
public string OutputDirectory { get; init; } = "";
|
|
}
|