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