Skip to content

Commit

Permalink
Merge pull request #43 from Ali-YousefiTelori/develop
Browse files Browse the repository at this point in the history
update client
  • Loading branch information
Ali-YousefiTelori committed Jan 8, 2024
2 parents cf84269 + aafe88b commit 6044517
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12421,9 +12421,11 @@ public partial class FormItemEventActionContract : System.ComponentModel.INotify
private long _formItemEventId;
private long _actionId;
private long? _formItemId;
private long? _parentId;
private int _orderIndex;
private FormItemContract _formItem;
private ActionContract _action;
private System.Collections.Generic.ICollection<FormItemEventActionContract> _children;
private System.Collections.Generic.ICollection<FormItemEventActionExecutionContract> _formItemEventActionCallHistories;

[Newtonsoft.Json.JsonProperty("formItemEventId", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
Expand Down Expand Up @@ -12471,6 +12473,21 @@ public long ActionId
}
}

[Newtonsoft.Json.JsonProperty("parentId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public long? ParentId
{
get { return _parentId; }

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

[Newtonsoft.Json.JsonProperty("orderIndex", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int OrderIndex
{
Expand Down Expand Up @@ -12516,6 +12533,21 @@ public ActionContract Action
}
}

[Newtonsoft.Json.JsonProperty("children", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<FormItemEventActionContract> Children
{
get { return _children; }

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

[Newtonsoft.Json.JsonProperty("formItemEventActionCallHistories", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<FormItemEventActionExecutionContract> FormItemEventActionCallHistories
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6322,6 +6322,12 @@
"format": "int64",
"nullable": true
},
"parentId": {
"title": "Nullable<Int64>",
"type": "integer",
"format": "int64",
"nullable": true
},
"orderIndex": {
"type": "integer",
"format": "int32"
Expand All @@ -6332,6 +6338,14 @@
"action": {
"$ref": "#/components/schemas/ActionContract"
},
"children": {
"title": "List<FormItemEventActionContract>",
"type": "array",
"nullable": true,
"items": {
"$ref": "#/components/schemas/FormItemEventActionContract"
}
},
"formItemEventActionCallHistories": {
"title": "List<FormItemEventActionExecutionContract>",
"type": "array",
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.23</Version>
<Version>0.0.0.24</Version>
<Description>client generated code.</Description>
<Copyright>EasyMicroservices@gmail.com</Copyright>
<PackageTags>Label,microservice,whitelabel,tenant,tenants</PackageTags>
Expand Down

0 comments on commit 6044517

Please sign in to comment.