Files
AnilistSync/Jellyfin.Plugin.Simkl/API/Responses/SyncHistoryResponse.cs
T
crobibero d4debbbb18 init
2020-09-08 15:10:57 -06:00

21 lines
522 B
C#

using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.Simkl.API.Responses
{
/// <summary>
/// Sync history response.
/// </summary>
public class SyncHistoryResponse
{
/// <summary>
/// Gets or sets added.
/// </summary>
public SyncHistoryResponseCount Added { get; set; }
/// <summary>
/// Gets or sets not found.
/// </summary>
[JsonPropertyName("not_found")]
public SyncHistoryNotFound NotFound { get; set; }
}
}