namespace Jellyfin.Plugin.Simkl.API.Objects
{
///
/// Simkl File.
///
public class SimklFile
{
///
/// Gets or sets the file.
///
public string file { get; set; }
///
/// Gets or sets the part.
///
public int? part { get; set; }
///
/// Gets or sets the hash.
///
public string hash { get; set; }
}
}