Accept tags to patch event

This commit is contained in:
2023-07-05 23:34:44 +01:00
parent 135583cf4d
commit 87b3e3b271
3 changed files with 8 additions and 3 deletions

View File

@ -12,4 +12,7 @@ public class PatchEvent
[JsonProperty("image")]
public string Image { get; init; } = null!;
[JsonProperty("tags")]
public string[] Tags { get; init; } = Array.Empty<string>();
}