aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/LyricResponse.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2024-02-26 05:09:40 -0700
committerGitHub <noreply@github.com>2024-02-26 05:09:40 -0700
commit0bc41c015f4ec907de75fe215589b7e30a819b54 (patch)
treeaade0ceab41e63b2f4833032dc380471166fc343 /MediaBrowser.Controller/Lyrics/LyricResponse.cs
parent59f50ae8b2555b8caa19e743c3ba612e999f75bf (diff)
Store lyrics in the database as media streams (#9951)
Diffstat (limited to 'MediaBrowser.Controller/Lyrics/LyricResponse.cs')
-rw-r--r--MediaBrowser.Controller/Lyrics/LyricResponse.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/MediaBrowser.Controller/Lyrics/LyricResponse.cs b/MediaBrowser.Controller/Lyrics/LyricResponse.cs
deleted file mode 100644
index 0d52b5ec50..0000000000
--- a/MediaBrowser.Controller/Lyrics/LyricResponse.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Controller.Lyrics;
-
-/// <summary>
-/// LyricResponse model.
-/// </summary>
-public class LyricResponse
-{
- /// <summary>
- /// Gets or sets Metadata for the lyrics.
- /// </summary>
- public LyricMetadata Metadata { get; set; } = new();
-
- /// <summary>
- /// Gets or sets a collection of individual lyric lines.
- /// </summary>
- public IReadOnlyList<LyricLine> Lyrics { get; set; } = Array.Empty<LyricLine>();
-}