using System; using System.Collections.Generic; using StrixMusic.Sdk.AppModels; using StrixMusic.Sdk.CoreModels; namespace StrixMusic.Sdk.Tests.Mock.AppModels; public class MockLyrics : ILyrics { public Dictionary? TimedLyrics { get; } = new(); public string? TextLyrics { get; } = string.Empty; public bool Equals(ICoreLyrics? other) => false; public IReadOnlyList Sources { get; } = new List(); public ITrack Track { get; } = new MockTrack(); public event EventHandler? SourcesChanged; }