mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
8 lines
212 B
C#
8 lines
212 B
C#
namespace AudioCore.Models;
|
|
|
|
public sealed class StemSet
|
|
{
|
|
public string OriginalFilePath { get; init; } = string.Empty;
|
|
public IReadOnlyList<StemTrack> Stems { get; init; } = Array.Empty<StemTrack>();
|
|
}
|