Created
March 29, 2022 13:35
-
-
Save MahdiKarimipour/4375823e58bcdacfe117ec87fd89c30e to your computer and use it in GitHub Desktop.
Pellerex, Azure DevOps: Create Project Request DTO
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 AzureDevOpsCreateProjectRequestDto | |
| { | |
| public string name { get; set; } | |
| public string description { get; set; } | |
| public string visibility { get; set; } | |
| public CapabilitiesSettings capabilities { get; set; } | |
| public class CapabilitiesSettings | |
| { | |
| public Versioncontrol versioncontrol { get; set; } | |
| public Processtemplate processTemplate { get; set; } | |
| } | |
| public class Versioncontrol | |
| { | |
| public string sourceControlType { get; set; } | |
| } | |
| public class Processtemplate | |
| { | |
| public string templateTypeId { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment