aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ScrollDirection.cs
blob: a1de0edcbbe8c34f384b0cdae0a07ed3e6cd94ea (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 ScrollDirection.
    /// </summary>
    public enum ScrollDirection
    {
        /// <summary>
        /// The horizontal.
        /// </summary>
        Horizontal,

        /// <summary>
        /// The vertical.
        /// </summary>
        Vertical
    }
}