Files
AnilistSync/Jellyfin.Plugin.Simkl/API/Objects/SimklFile.cs
T
2020-09-08 16:35:21 -06:00

23 lines
506 B
C#

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