namespace MediaBrowser.Model.Entities;
/// 
/// Class MediaAttachment.
/// 
public class MediaAttachment
{
    /// 
    /// Gets or sets the codec.
    /// 
    /// The codec.
    public string? Codec { get; set; }
    /// 
    /// Gets or sets the codec tag.
    /// 
    /// The codec tag.
    public string? CodecTag { get; set; }
    /// 
    /// Gets or sets the comment.
    /// 
    /// The comment.
    public string? Comment { get; set; }
    /// 
    /// Gets or sets the index.
    /// 
    /// The index.
    public int Index { get; set; }
    /// 
    /// Gets or sets the filename.
    /// 
    /// The filename.
    public string? FileName { get; set; }
    /// 
    /// Gets or sets the MIME type.
    /// 
    /// The MIME type.
    public string? MimeType { get; set; }
    /// 
    /// Gets or sets the delivery URL.
    /// 
    /// The delivery URL.
    public string? DeliveryUrl { get; set; }
}