Skip to content

Commit

Permalink
feat: added optional download url to plc config
Browse files Browse the repository at this point in the history
  • Loading branch information
iadonkey authored Dec 5, 2023
1 parent 7be855d commit 952c996
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions TwinpackShared/Models/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@ public PlcProjectType PlcType {
[DefaultValue("")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string LicenseTmcFile { get; set; }

[JsonPropertyName("binary-download-url")]
[DefaultValue("")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string BinaryDownloadUrl { get; set; }
}

public class ConfigPatches
Expand Down

0 comments on commit 952c996

Please sign in to comment.