Skip to content

Commit

Permalink
Merge pull request #50 from Ali-YousefiTelori/develop
Browse files Browse the repository at this point in the history
update client
  • Loading branch information
Ali-YousefiTelori committed Jan 17, 2024
2 parents b1640fe + ef5bc2b commit 197d149
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12472,6 +12472,7 @@ public partial class FormItemEventActionContract : System.ComponentModel.INotify
private long? _formItemId;
private long? _parentId;
private int _orderIndex;
private string _influencedToVariableName;
private ActionContract _action;
private System.Collections.Generic.ICollection<FormItemEventActionContract> _children;
private System.Collections.Generic.ICollection<FormItemEventActionExecutionContract> _formItemEventActionCallHistories;
Expand Down Expand Up @@ -12566,6 +12567,21 @@ public int OrderIndex
}
}

[Newtonsoft.Json.JsonProperty("influencedToVariableName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string InfluencedToVariableName
{
get { return _influencedToVariableName; }

set
{
if (_influencedToVariableName != value)
{
_influencedToVariableName = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("action", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public ActionContract Action
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6362,6 +6362,10 @@
"type": "integer",
"format": "int32"
},
"influencedToVariableName": {
"type": "string",
"nullable": true
},
"action": {
"$ref": "#/components/schemas/ActionContract"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.30</Version>
<Version>0.0.0.31</Version>
<Description>client generated code.</Description>
<Copyright>EasyMicroservices@gmail.com</Copyright>
<PackageTags>Label,microservice,whitelabel,tenant,tenants</PackageTags>
Expand Down

0 comments on commit 197d149

Please sign in to comment.