Files
AnilistSync/Jellyfin.Plugin.Simkl/API/Objects/SimklFile.cs
T
2021-02-24 10:29:09 -07:00

28 lines
652 B
C#

using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.Simkl.API.Objects
{
/// <summary>
/// Simkl File.
/// </summary>
public class SimklFile
{
/// <summary>
/// Gets or sets the file.
/// </summary>
[JsonPropertyName("file")]
public string? File { get; set; }
/// <summary>
/// Gets or sets the part.
/// </summary>
[JsonPropertyName("part")]
public int? Part { get; set; }
/// <summary>
/// Gets or sets the hash.
/// </summary>
[JsonPropertyName("hash")]
public string? Hash { get; set; }
}
}