mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
9 lines
185 B
C#
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; }
|
|
}
|