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