Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MahdiKarimipour/1ce9f8d06c0c88c798d5418d6df3be7b to your computer and use it in GitHub Desktop.
Save MahdiKarimipour/1ce9f8d06c0c88c798d5418d6df3be7b to your computer and use it in GitHub Desktop.
Fetch Project List using Azure DevOps REST API: Response Object
public class AzureDevOpsGetOrganisationProjectsResponseDto
{
public int count { get; set; }
public Value[] value { get; set; }
public class Value
{
public string id { get; set; }
public string name { get; set; }
public string description { get; set; }
public string url { get; set; }
public string state { get; set; }
public int revision { get; set; }
public string visibility { get; set; }
public DateTime lastUpdateTime { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment