You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Connectivity/ClientType.cs

38 lines
748 B

namespace MediaBrowser.Model.Connectivity
{
/// <summary>
/// Enum ClientType
/// </summary>
public enum ClientType
{
/// <summary>
/// The other
/// </summary>
Other,
/// <summary>
/// The android
/// </summary>
Android,
/// <summary>
/// The dashboard
/// </summary>
Dashboard,
/// <summary>
/// The ios
/// </summary>
Ios,
/// <summary>
/// The pc
/// </summary>
Pc,
/// <summary>
/// The windows phone
/// </summary>
WindowsPhone,
/// <summary>
/// The windows RT
/// </summary>
WindowsRT
}
}