Skip to content

Commit

Permalink
Make Runner.Online a nullable bool
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-z committed Dec 16, 2024
1 parent 6e464d5 commit 55682f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NGitLab/Models/Runner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Runner
public bool Paused { get; set; }

[JsonPropertyName("online")]
public bool Online { get; set; }
public bool? Online { get; set; }

[JsonPropertyName("status")]
public string Status { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion NGitLab/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4073,7 +4073,7 @@ NGitLab.Models.Runner.Locked.get -> bool
NGitLab.Models.Runner.Locked.set -> void
NGitLab.Models.Runner.Name.get -> string
NGitLab.Models.Runner.Name.set -> void
NGitLab.Models.Runner.Online.get -> bool
NGitLab.Models.Runner.Online.get -> bool?
NGitLab.Models.Runner.Online.set -> void
NGitLab.Models.Runner.Paused.get -> bool
NGitLab.Models.Runner.Paused.set -> void
Expand Down

0 comments on commit 55682f5

Please sign in to comment.