diff --git a/Jellyfin.Data/Entities/AttachmentStreamInfo.cs b/Jellyfin.Data/Entities/AttachmentStreamInfo.cs
index 056d5b05ec..77b627f375 100644
--- a/Jellyfin.Data/Entities/AttachmentStreamInfo.cs
+++ b/Jellyfin.Data/Entities/AttachmentStreamInfo.cs
@@ -2,22 +2,48 @@ using System;
namespace Jellyfin.Data.Entities;
-#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
+///
+/// Provides informations about an Attachment to an .
+///
public class AttachmentStreamInfo
{
+ ///
+ /// Gets or Sets the reference.
+ ///
public required Guid ItemId { get; set; }
+ ///
+ /// Gets or Sets the reference.
+ ///
public required BaseItemEntity Item { get; set; }
+ ///
+ /// Gets or Sets The index within the source file.
+ ///
public required int Index { get; set; }
+ ///
+ /// Gets or Sets the codec of the attachment.
+ ///
public required string Codec { get; set; }
+ ///
+ /// Gets or Sets the codec tag of the attachment.
+ ///
public string? CodecTag { get; set; }
+ ///
+ /// Gets or Sets the comment of the attachment.
+ ///
public string? Comment { get; set; }
+ ///
+ /// Gets or Sets the filename of the attachment.
+ ///
public string? Filename { get; set; }
+ ///
+ /// Gets or Sets the attachments mimetype.
+ ///
public string? MimeType { get; set; }
}