add more data to media report

This commit is contained in:
Luke Pulverenti
2014-03-02 21:17:12 -05:00
parent aacbd70c97
commit 2db452f68f
5 changed files with 22 additions and 28 deletions

View File

@@ -229,7 +229,19 @@ namespace MediaBrowser.Controller.Entities
}
}
public bool IsUnidentified { get; set; }
[IgnoreDataMember]
public bool IsUnidentified
{
get
{
if (ProviderIds.Any())
{
return false;
}
return false;
}
}
/// <summary>
/// Gets or sets the locked fields.

View File

@@ -49,11 +49,5 @@ namespace MediaBrowser.Controller.Entities
/// </summary>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
bool BeforeMetadataRefresh();
/// <summary>
/// Gets or sets a value indicating whether this instance is unidentified.
/// </summary>
/// <value><c>true</c> if this instance is unidentified; otherwise, <c>false</c>.</value>
bool IsUnidentified { get; set; }
}
}