diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-08 13:07:45 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-08 13:07:45 -0500 |
| commit | fd0a7cb14020adc90cb1d89adef57884ba0d108f (patch) | |
| tree | e742acf52a56190bda2f0ebd8b3d352e5e9643a5 /MediaBrowser.Controller/Entities | |
| parent | b5958142543cf21da1b9a8adf0b272946711ba4c (diff) | |
record dvd season/episode numbers
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/TV/Episode.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs index e9f250d2a4..4e94c39428 100644 --- a/MediaBrowser.Controller/Entities/TV/Episode.cs +++ b/MediaBrowser.Controller/Entities/TV/Episode.cs @@ -41,6 +41,17 @@ namespace MediaBrowser.Controller.Entities.TV public int? AirsBeforeEpisodeNumber { get; set; } /// <summary> + /// Gets or sets the DVD season number. + /// </summary> + /// <value>The DVD season number.</value> + public int? DvdSeasonNumber { get; set; } + /// <summary> + /// Gets or sets the DVD episode number. + /// </summary> + /// <value>The DVD episode number.</value> + public int? DvdEpisodeNumber { get; set; } + + /// <summary> /// We want to group into series not show individually in an index /// </summary> /// <value><c>true</c> if [group in index]; otherwise, <c>false</c>.</value> |
