aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/Lyric.cs
diff options
context:
space:
mode:
author1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-10 14:58:03 -0400
committer1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-11 15:50:27 -0400
commit9d5cf67dfe2d5871d42a55a5e114c5ead1036ff0 (patch)
treeb89a9f63b2d76314d6ae2ee8aeb43991b1958a76 /Jellyfin.Api/Models/UserDtos/Lyric.cs
parent23ec35d3965e950f710c7cf6294145c601a6885b (diff)
Create ILyricsProvider
Diffstat (limited to 'Jellyfin.Api/Models/UserDtos/Lyric.cs')
-rw-r--r--Jellyfin.Api/Models/UserDtos/Lyric.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/Lyric.cs b/Jellyfin.Api/Models/UserDtos/Lyric.cs
new file mode 100644
index 000000000..2794cd78a
--- /dev/null
+++ b/Jellyfin.Api/Models/UserDtos/Lyric.cs
@@ -0,0 +1,18 @@
+namespace Jellyfin.Api.Models.UserDtos
+{
+ /// <summary>
+ /// Lyric dto.
+ /// </summary>
+ public class Lyric
+ {
+ /// <summary>
+ /// Gets or sets the start time (ticks).
+ /// </summary>
+ public double Start { get; set; }
+
+ /// <summary>
+ /// Gets or sets the text.
+ /// </summary>
+ public string Text { get; set; } = string.Empty;
+ }
+}