mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
10 lines
275 B
C#
10 lines
275 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>();
|
|
|
|
public long TotalFrames => Stems.Max(s => s.TotalFrames);
|
|
}
|