aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/SeriesStatus.cs
blob: cab6a83e8bb7d3e9e5be0a385e2c3164377f0803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum SeriesStatus
    /// </summary>
    public enum SeriesStatus
    {
        /// <summary>
        /// The continuing
        /// </summary>
        Continuing,
        /// <summary>
        /// The ended
        /// </summary>
        Ended
    }
}