Files
Cloud-20Engineering/ConsoleApps/SnykRestApi/SnykRestApi/Models/Raw/GroupResponse.cs
Johannes Oenema Effectory 91980817e0 Merged PR 63702: Add Sonar Client to update permissions and tags in Sonar Projects to new team structure
Add Sonar Client to update permissions and tags in Sonar Projects to new team structure

Related work items: #125680
2025-11-05 15:18:52 +00:00

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; }
}