namespace AudioCore.Models; public sealed class StemSet { public string OriginalFilePath { get; init; } = string.Empty; public IReadOnlyList Stems { get; init; } = Array.Empty(); public long TotalFrames => Stems.Max(s => s.TotalFrames); }