Skip to content

Commit

Permalink
Add HasLongTermSupport to RootResource
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnoonan committed Dec 4, 2018
1 parent b15544a commit ead2b0c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2972,6 +2972,7 @@ Octopus.Client.Model
.ctor()
String ApiVersion { get; set; }
String Application { get; set; }
Boolean HasLongTermSupport { get; set; }
Guid InstallationId { get; set; }
Boolean IsEarlyAccessProgram { get; set; }
String Version { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3472,6 +3472,7 @@ Octopus.Client.Model
.ctor()
String ApiVersion { get; set; }
String Application { get; set; }
Boolean HasLongTermSupport { get; set; }
Guid InstallationId { get; set; }
Boolean IsEarlyAccessProgram { get; set; }
String Version { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions source/Octopus.Client/Model/RootResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ public class RootResource : Resource
[DefaultValue(false)]
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public bool IsEarlyAccessProgram { get; set; }

[DefaultValue(false)]
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public bool HasLongTermSupport { get; set; }
}
}

0 comments on commit ead2b0c

Please sign in to comment.