Skip to content

Commit

Permalink
Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
MahdiyarGHD committed Nov 14, 2023
1 parent aaf7118 commit 56dad3a
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 @@ -5818,6 +5818,7 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal
public partial class IsKeyExistRequestContract : System.ComponentModel.INotifyPropertyChanged
{
private string _key;
private string _uniqueIdentity;

[Newtonsoft.Json.JsonProperty("key", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Key
Expand All @@ -5834,6 +5835,21 @@ public string Key
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
get { return _uniqueIdentity; }

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

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.CallerMemberName] string propertyName = null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2808,6 +2808,10 @@
"key": {
"type": "string",
"nullable": true
},
"uniqueIdentity": {
"type": "string",
"nullable": true
}
}
},
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.17</Version>
<Version>0.0.0.18</Version>
<Description>client generated code.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>microservice,Content,Contents,client</PackageTags>
Expand Down

0 comments on commit 56dad3a

Please sign in to comment.