mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
14 lines
330 B
C#
14 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.TV.Entities
|
|
{
|
|
public class Episode : Video
|
|
{
|
|
public string SeasonNumber { get; set; }
|
|
public string EpisodeNumber { get; set; }
|
|
public string FirstAired { get; set; }
|
|
}
|
|
}
|