update translations

This commit is contained in:
Luke Pulverenti
2014-10-17 17:49:55 -04:00
parent 4f207c43dd
commit 76cabe8226
29 changed files with 184 additions and 179 deletions

View File

@@ -1,4 +1,5 @@
using MediaBrowser.Model.Connect;
using System.Collections.Generic;
using MediaBrowser.Model.Connect;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Events;
using System;
@@ -86,5 +87,11 @@ namespace MediaBrowser.Model.ApiClient
/// <param name="pin">The pin.</param>
/// <returns>Task.</returns>
Task ExchangePin(PinCreationResult pin);
/// <summary>
/// Gets the available servers.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
Task<List<ServerInfo>> GetAvailableServers(CancellationToken cancellationToken);
}
}

View File

@@ -17,7 +17,6 @@ namespace MediaBrowser.Model.ApiClient
public ServerInfo()
{
WakeOnLanInfos = new List<WakeOnLanInfo>();
LocalAddress = "http://localhost:8096";
}
}
}

View File

@@ -1,10 +1,9 @@
using System;

namespace MediaBrowser.Model.Connect
{
public class PinExchangeResult
{
public string UserId { get; set; }
public string UserAccessToken { get; set; }
public string AccessToken { get; set; }
}
}