mirror of
https://dev.azure.com/effectory/Survey%20Software/_git/Cloud%20Engineering
synced 2026-02-27 10:45:02 +01:00
Add Sonar Client to update permissions and tags in Sonar Projects to new team structure Related work items: #125680
12 lines
242 B
C#
12 lines
242 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SnykRestApi.Models.Raw;
|
|
|
|
internal class GroupResponse
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; }
|
|
|
|
} |