aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/AttachmentStreamInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/AttachmentStreamInfo.cs')
-rw-r--r--Jellyfin.Data/Entities/AttachmentStreamInfo.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Jellyfin.Data/Entities/AttachmentStreamInfo.cs b/Jellyfin.Data/Entities/AttachmentStreamInfo.cs
new file mode 100644
index 000000000..056d5b05e
--- /dev/null
+++ b/Jellyfin.Data/Entities/AttachmentStreamInfo.cs
@@ -0,0 +1,23 @@
+using System;
+
+namespace Jellyfin.Data.Entities;
+
+#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
+public class AttachmentStreamInfo
+{
+ public required Guid ItemId { get; set; }
+
+ public required BaseItemEntity Item { get; set; }
+
+ public required int Index { get; set; }
+
+ public required string Codec { get; set; }
+
+ public string? CodecTag { get; set; }
+
+ public string? Comment { get; set; }
+
+ public string? Filename { get; set; }
+
+ public string? MimeType { get; set; }
+}