aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/ChromecastVersion.cs
blob: 2622e08efb43dbc863ad5e0de6f6ccd792d0d919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Data.Enums
{
    /// <summary>
    /// An enum representing the version of Chromecast to be used by clients.
    /// </summary>
    public enum ChromecastVersion
    {
        /// <summary>
        /// Stable Chromecast version.
        /// </summary>
        Stable = 0,

        /// <summary>
        /// Unstable Chromecast version.
        /// </summary>
        Unstable = 1
    }
}