mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
16 lines
309 B
C#
16 lines
309 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
namespace MediaBrowser.Providers.Manager
|
|
{
|
|
public class RefreshResult
|
|
{
|
|
public ItemUpdateType UpdateType { get; set; }
|
|
|
|
public string? ErrorMessage { get; set; }
|
|
|
|
public int Failures { get; set; }
|
|
}
|
|
}
|