mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-29 05:11:49 +00:00
15 lines
309 B
C#
15 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; }
|
|
}
|
|
}
|