aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/AttachmentStreamInfo.cs
blob: 19265a0115f125fa6f185d5dfbcba42b9b8d3271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;

namespace Jellyfin.Data.Entities;

/// <summary>
/// Provides information about an Attachment to an <see cref="BaseItemEntity"/>.
/// </summary>
public class AttachmentStreamInfo
{
    /// <summary>
    /// Gets or Sets the <see cref="BaseItemEntity"/> reference.
    /// </summary>
    public required Guid ItemId { get; set; }

    /// <summary>
    /// Gets or Sets the <see cref="BaseItemEntity"/> reference.
    /// </summary>
    public required BaseItemEntity Item { get; set; }

    /// <summary>
    /// Gets or Sets the index within the source file.
    /// </summary>
    public required int Index { get; set; }

    /// <summary>
    /// Gets or Sets the codec of the attachment.
    /// </summary>
    public required string Codec { get; set; }

    /// <summary>
    /// Gets or Sets the codec tag of the attachment.
    /// </summary>
    public string? CodecTag { get; set; }

    /// <summary>
    /// Gets or Sets the comment of the attachment.
    /// </summary>
    public string? Comment { get; set; }

    /// <summary>
    /// Gets or Sets the filename of the attachment.
    /// </summary>
    public string? Filename { get; set; }

    /// <summary>
    /// Gets or Sets the attachments mimetype.
    /// </summary>
    public string? MimeType { get; set; }
}