9 lines
289 B
C#
9 lines
289 B
C#
namespace Modules.Library.Application.Models.Anime;
|
|
|
|
public class Episode : AnimeItem
|
|
{
|
|
public ushort Variant { get; set; }
|
|
public AnimeEpisodeType Type { get; set; }
|
|
public AnimeItemSingleDurationType DurationType { get; set; }
|
|
public TimeSpan? Duration { get; set; }
|
|
} |