You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/Jellyfin.Data/Entities/AttachmentStreamInfo.cs

24 lines
537 B

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 BaseItem 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; }
}