We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba88709 + 548feee commit cb67a83Copy full SHA for cb67a83
GitHubHook/Events/BaseEvent.cs
@@ -7,5 +7,6 @@ public abstract class BaseEvent : SnakeCaseNamedObject
7
{
8
public Repository Repository { get; set; }
9
public User Sender { get; set; }
10
+ public Installation Installation { get; set; }
11
}
12
GitHubHook/Models/Installation.cs
@@ -0,0 +1,9 @@
1
+using GitHubHook.Helpers;
2
+
3
+namespace GitHubHook.Models
4
+{
5
+ public class Installation : SnakeCaseNamedObject
6
+ {
+ public int Id { get; set; }
+ }
+}
0 commit comments