ABStemPlayer/AudioCore/Models/LoopRegion.cs

9 lines
185 B
C#

namespace AudioCore.Models;
public sealed class LoopRegion
{
public bool IsEnabled { get; init; }
public TimeSpan Start { get; init; }
public TimeSpan End { get; init; }
}