mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
16 lines
381 B
C#
16 lines
381 B
C#
namespace ABStemPlayer.ViewModels;
|
|
|
|
public partial class StemChannelViewModel : ObservableObject
|
|
{
|
|
public StemType Type { get; }
|
|
|
|
[ObservableProperty] private bool _enabled = true;
|
|
[ObservableProperty] private float _gainDb = 0f;
|
|
[ObservableProperty] private float _pan = 0f;
|
|
|
|
public StemChannelViewModel(StemType type)
|
|
{
|
|
Type = type;
|
|
}
|
|
}
|