11 lines
241 B
C#
11 lines
241 B
C#
using System.Threading.Tasks;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Metadata
|
|
{
|
|
public interface ILocalStatisticsProvider
|
|
{
|
|
Task RefreshStatistics(string ffprobePath, MediaItem mediaItem);
|
|
}
|
|
}
|