mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
13 lines
441 B
C#
13 lines
441 B
C#
namespace AudioCore.Models;
|
|
|
|
public sealed class PlaybackSession
|
|
{
|
|
public StemSet StemSet { get; init; } = default!;
|
|
public long TotalFrames => StemSet?.TotalFrames ?? 0;
|
|
public MixerSettings Mixer { get; set; } = new() { Stems = [] };
|
|
public LoopRegion Loop { get; set; } = new();
|
|
public PlaybackSpeedSettings Speed { get; set; } = new();
|
|
|
|
public override string ToString() => $"{StemSet} Mixer: {Mixer} {Speed}";
|
|
}
|