Created
April 2, 2022 18:42
-
-
Save MahdiKarimipour/1ce9f8d06c0c88c798d5418d6df3be7b to your computer and use it in GitHub Desktop.
Fetch Project List using Azure DevOps REST API: Response Object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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