mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 23:35:25 +03:00
38 lines
748 B
C#
38 lines
748 B
C#
|
|
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
|
|||
|
|
}
|
|||
|
|
}
|