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; } } }