using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.Simkl.API.Objects
{
///
/// Show episode.
///
public class ShowEpisode
{
///
/// Gets or sets episode number.
///
[JsonPropertyName("number")]
public int? Number { get; set; }
// TODO: watched_at
}
}