2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2019-10-03 15:51:28 +00:00
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Class MediaAttachment.
|
2019-10-03 15:51:28 +00:00
|
|
|
/// </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>
|
2020-01-08 01:52:48 +00:00
|
|
|
public string FileName { get; set; }
|
2019-10-03 15:51:28 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the MIME type.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The MIME type.</value>
|
2020-01-08 01:52:48 +00:00
|
|
|
public string MimeType { get; set; }
|
2019-10-18 11:59:03 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the delivery URL.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The delivery URL.</value>
|
|
|
|
public string DeliveryUrl { get; set; }
|
2019-10-03 15:51:28 +00:00
|
|
|
}
|
|
|
|
}
|