mirror of
https://dev.azure.com/effectory/Survey%20Software/_git/Cloud%20Engineering
synced 2026-02-27 18:52:18 +01:00
20 lines
515 B
C#
20 lines
515 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SnykRestApi.Models.Raw
|
|
{
|
|
internal class OrganizationResponse
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; }
|
|
[JsonPropertyName("slug")]
|
|
public string Slug { get; set; }
|
|
[JsonPropertyName("url")]
|
|
public string Url { get; set; }
|
|
[JsonPropertyName("group")]
|
|
public GroupResponse Group { get; set; }
|
|
|
|
}
|
|
}
|