blob: d2483548b84948aac5e7604d871fa99e3a6a9f41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 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; }
}
|