Skip to content

Commit

Permalink
Merge pull request #49 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 c73fe34 + 17081a4 commit b1640fe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12467,7 +12467,7 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal
public partial class FormItemEventActionContract : System.ComponentModel.INotifyPropertyChanged
{
private long _id;
private long _formItemEventId;
private long? _formItemEventId;
private long _actionId;
private long? _formItemId;
private long? _parentId;
Expand All @@ -12491,8 +12491,8 @@ public long Id
}
}

[Newtonsoft.Json.JsonProperty("formItemEventId", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public long FormItemEventId
[Newtonsoft.Json.JsonProperty("formItemEventId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public long? FormItemEventId
{
get { return _formItemEventId; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6337,8 +6337,10 @@
"format": "int64"
},
"formItemEventId": {
"title": "Nullable<Int64>",
"type": "integer",
"format": "int64"
"format": "int64",
"nullable": true
},
"actionId": {
"type": "integer",
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.29</Version>
<Version>0.0.0.30</Version>
<Description>client generated code.</Description>
<Copyright>EasyMicroservices@gmail.com</Copyright>
<PackageTags>Label,microservice,whitelabel,tenant,tenants</PackageTags>
Expand Down

0 comments on commit b1640fe

Please sign in to comment.