This commit is contained in:
crobibero
2020-09-08 15:10:57 -06:00
commit d4debbbb18
40 changed files with 2984 additions and 0 deletions
@@ -0,0 +1,23 @@
namespace Jellyfin.Plugin.Simkl.API.Objects
{
/// <summary>
/// Simkl File.
/// </summary>
public class SimklFile
{
/// <summary>
/// Gets or sets the file.
/// </summary>
public string File { get; set; }
/// <summary>
/// Gets or sets the part.
/// </summary>
public int? Part { get; set; }
/// <summary>
/// Gets or sets the hash.
/// </summary>
public string Hash { get; set; }
}
}