зеркало из https://github.com/microsoft/scalar.git
15 строки
311 B
C#
15 строки
311 B
C#
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace GVFS.Common
|
||
|
{
|
||
|
public class VersionResponse
|
||
|
{
|
||
|
public string Version { get; set; }
|
||
|
|
||
|
public static VersionResponse FromJsonString(string jsonString)
|
||
|
{
|
||
|
return JsonConvert.DeserializeObject<VersionResponse>(jsonString);
|
||
|
}
|
||
|
}
|
||
|
}
|