aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/Lyrics.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Models/UserDtos/Lyrics.cs')
-rw-r--r--Jellyfin.Api/Models/UserDtos/Lyrics.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/Lyrics.cs b/Jellyfin.Api/Models/UserDtos/Lyrics.cs
deleted file mode 100644
index cd548eb03..000000000
--- a/Jellyfin.Api/Models/UserDtos/Lyrics.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace Jellyfin.Api.Models.UserDtos
-{
- /// <summary>
- /// Lyric dto.
- /// </summary>
- public class Lyrics
- {
- /// <summary>
- /// Gets or sets the start.
- /// </summary>
- public double? Start { get; set; }
-
- /// <summary>
- /// Gets or sets the text.
- /// </summary>
- public string? Text { get; set; }
-
- /// <summary>
- /// Gets or sets the error.
- /// </summary>
- public string? Error { get; set; }
- }
-}