src/Models/JSONResponses/Discovery/VMwareVCenterJSON.cs (17 lines of code) (raw):
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Azure.Migrate.Export.Models
{
public class VMwareVCenterJSON
{
[JsonProperty("value")]
public List<VMwareVCentersMachinesValue> Values { get; set; }
[JsonProperty("nextLink")]
public string NextLink { get; set; }
}
public class VMwareVCentersMachinesValue
{
[JsonProperty("id")]
public string Id { get; set; }
}
}