mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
24 lines
543 B
C#
24 lines
543 B
C#
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; }
|
|
}
|