2014-02-07 15:30:41 -05:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
using System;
|
2016-10-25 15:02:04 -04:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2014-02-07 15:30:41 -05:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ItemImageInfo
|
|
|
|
|
|
{
|
2015-02-21 02:32:49 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the path.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The path.</value>
|
2014-02-07 15:30:41 -05:00
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
2015-02-21 02:32:49 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the type.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The type.</value>
|
2014-02-07 15:30:41 -05:00
|
|
|
|
public ImageType Type { get; set; }
|
|
|
|
|
|
|
2015-02-21 02:32:49 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the date modified.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The date modified.</value>
|
2014-02-07 15:30:41 -05:00
|
|
|
|
public DateTime DateModified { get; set; }
|
2015-10-15 11:51:00 -04:00
|
|
|
|
|
2015-11-20 19:27:34 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets a value indicating whether this instance is placeholder.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value><c>true</c> if this instance is placeholder; otherwise, <c>false</c>.</value>
|
|
|
|
|
|
public bool IsPlaceholder { get; set; }
|
2015-11-20 23:58:20 -05:00
|
|
|
|
|
2015-10-15 11:51:00 -04:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public bool IsLocalFile
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
2015-10-16 13:06:31 -04:00
|
|
|
|
if (Path != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (Path.StartsWith("http", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2015-10-15 11:51:00 -04:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2014-02-07 15:30:41 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|