aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ScrollDirection.cs
blob: ed221030038d0eff8350f37bdc0735c443e2f5a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum ScrollDirection
    /// </summary>
    public enum ScrollDirection
    {
        /// <summary>
        /// The horizontal
        /// </summary>
        Horizontal,
        /// <summary>
        /// The vertical
        /// </summary>
        Vertical
    }
}