You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.8 KiB
68 lines
1.8 KiB
using System;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
public class MetadataStatus
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the item identifier.
|
|
/// </summary>
|
|
/// <value>The item identifier.</value>
|
|
public Guid ItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name of the item.
|
|
/// </summary>
|
|
/// <value>The name of the item.</value>
|
|
public string ItemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the type of the item.
|
|
/// </summary>
|
|
/// <value>The type of the item.</value>
|
|
public string ItemType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name of the series.
|
|
/// </summary>
|
|
/// <value>The name of the series.</value>
|
|
public string SeriesName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the date last metadata refresh.
|
|
/// </summary>
|
|
/// <value>The date last metadata refresh.</value>
|
|
public DateTime? DateLastMetadataRefresh { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the date last images refresh.
|
|
/// </summary>
|
|
/// <value>The date last images refresh.</value>
|
|
public DateTime? DateLastImagesRefresh { get; set; }
|
|
|
|
public DateTime? ItemDateModified { get; set; }
|
|
|
|
public bool IsDirty { get; private set; }
|
|
|
|
public void SetDateLastMetadataRefresh(DateTime? date)
|
|
{
|
|
if (date != DateLastMetadataRefresh)
|
|
{
|
|
IsDirty = true;
|
|
}
|
|
|
|
DateLastMetadataRefresh = date;
|
|
}
|
|
|
|
public void SetDateLastImagesRefresh(DateTime? date)
|
|
{
|
|
if (date != DateLastImagesRefresh)
|
|
{
|
|
IsDirty = true;
|
|
}
|
|
|
|
DateLastImagesRefresh = date;
|
|
}
|
|
}
|
|
}
|