Pushing missing changes

This commit is contained in:
LukePulverenti
2013-02-20 20:33:05 -05:00
parent 845554722e
commit 767cdc1f6f
924 changed files with 103121 additions and 18677 deletions

View File

@@ -0,0 +1,37 @@
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
}
}