Skip to content

Commit

Permalink
Add missing Id property on Event (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Toa741 authored Jun 22, 2021
1 parent b52d08d commit 133c46a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions NGitLab/Models/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

Expand Down

0 comments on commit 133c46a

Please sign in to comment.