feat: add PlayMode enum (single=0, loop=1)

This commit is contained in:
km2023
2026-05-06 10:31:36 +08:00
parent b42f848c31
commit be851b05ec
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import Foundation
/// `loop`
///
/// - `single` (0):
/// - `loop` (1):
public enum PlayMode: Int, Codable, Equatable {
case single = 0
case loop = 1
}