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