From 133c46ab83341e279c280ed9c1452ef516ca40bc Mon Sep 17 00:00:00 2001 From: Thomas Cortes <78750681+Toa741@users.noreply.github.com> Date: Tue, 22 Jun 2021 13:18:06 -0400 Subject: [PATCH] Add missing Id property on Event (#29) --- NGitLab/Models/Event.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NGitLab/Models/Event.cs b/NGitLab/Models/Event.cs index f70482b1..45eaeebf 100644 --- a/NGitLab/Models/Event.cs +++ b/NGitLab/Models/Event.cs @@ -9,6 +9,9 @@ namespace NGitLab.Models [DataContract] public class Event { + [DataMember(Name = "id")] + public int Id { get; set; } + [DataMember(Name = "title")] public string Title { get; set; }