diff --git a/ApiModels.cs b/ApiModels.cs index a813a44..fc7ef7e 100644 --- a/ApiModels.cs +++ b/ApiModels.cs @@ -147,6 +147,7 @@ public class AppSubscription public string Name { get; set; } = ""; public string Slug { get; set; } = ""; public string? Description { get; set; } + public string? GroupName { get; set; } public string? WebhookUrl { get; set; } public string? WebhookSecret { get; set; } public bool IsActive { get; set; } @@ -241,6 +242,7 @@ public class TelemetryProjectDto public string Name { get; set; } = ""; public string Slug { get; set; } = ""; public string? Platform { get; set; } + public string? GroupName { get; set; } public string Dsn { get; set; } = ""; public bool IsActive { get; set; } public bool StackTraceGroupingEnabled { get; set; }