Skip to content

Instantly share code, notes, and snippets.

@smaglio81
Created June 28, 2020 16:14
Show Gist options
  • Save smaglio81/e61e34189ab960d4987188f131d0e751 to your computer and use it in GitHub Desktop.
Save smaglio81/e61e34189ab960d4987188f131d0e751 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace YourProject
{
public class JiraDevInfoResponse
{
public Dictionary<string, JiraDevInfoResponseEntitySet> AcceptedDevInfoEntities { get; set; }
public Dictionary<string, JiraDevInfoResponseEntitySet> FailedDevInfoEntities { get; set; }
public List<string> UnknownIssueKeys { get; set; }
}
public class JiraDevInfoResponseEntitySet
{
public List<string> Branches { get; set; }
public List<string> Commits { get; set; }
public List<string> PullRequests { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment