aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/Lyric.cs
diff options
context:
space:
mode:
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;
+ }
+}