aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MediaAttachment.cs
blob: 34e3eabc97f979831c5b4ded06b299d54e04e9a4 (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
50
51
#nullable disable
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Class MediaAttachment.
    /// </summary>
    public class MediaAttachment
    {
        /// <summary>
        /// Gets or sets the codec.
        /// </summary>
        /// <value>The codec.</value>
        public string Codec { get; set; }

        /// <summary>
        /// Gets or sets the codec tag.
        /// </summary>
        /// <value>The codec tag.</value>
        public string CodecTag { get; set; }

        /// <summary>
        /// Gets or sets the comment.
        /// </summary>
        /// <value>The comment.</value>
        public string Comment { get; set; }

        /// <summary>
        /// Gets or sets the index.
        /// </summary>
        /// <value>The index.</value>
        public int Index { get; set; }

        /// <summary>
        /// Gets or sets the filename.
        /// </summary>
        /// <value>The filename.</value>
        public string FileName { get; set; }

        /// <summary>
        /// Gets or sets the MIME type.
        /// </summary>
        /// <value>The MIME type.</value>
        public string MimeType { get; set; }

        /// <summary>
        /// Gets or sets the delivery URL.
        /// </summary>
        /// <value>The delivery URL.</value>
        public string DeliveryUrl { get; set; }
    }
}