17 lines
381 B
C#
17 lines
381 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.Simkl.API.Objects
|
|
{
|
|
/// <summary>
|
|
/// Show episode.
|
|
/// </summary>
|
|
public class ShowEpisode
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets episode number.
|
|
/// </summary>
|
|
[JsonPropertyName("number")]
|
|
public int? Number { get; set; }
|
|
// TODO: watched_at
|
|
}
|
|
} |