aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/SeriesTimerQuery.cs
blob: 22d408b048714482aab42ebdc004e67e04352e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma warning disable CS1591
#pragma warning disable SA1600

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; }
    }
}