Provider Data on item and NeedsRefresh functionality for providers

This commit is contained in:
ebr11 Eric Reed spam
2012-09-17 20:06:31 -04:00
parent 9fbd88a713
commit 8b548fff38
6 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Providers
{
public class BaseProviderInfo
{
public Guid ProviderId { get; set; }
public DateTime LastRefreshed { get; set; }
}
}