aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/SeriesTimerQuery.cs
blob: 2369a53b6d90d447f772febca14a77f2a280d517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using MediaBrowser.Model.Entities;

namespace MediaBrowser.Model.LiveTv
{
    public class SeriesTimerQuery
    {
        /// <summary>
        /// Gets or sets the sort by - SortName, Priority
        /// </summary>
        /// <value>The sort by.</value>
        public string SortBy { get; set; }

        /// <summary>
        /// Gets or sets the sort order.
        /// </summary>
        /// <value>The sort order.</value>
        public SortOrder SortOrder { get; set; }
    }
}