Skip to content

Commit

Permalink
update client
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Dec 26, 2023
1 parent e2b3ddb commit 244fb92
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8595,6 +8595,7 @@ public partial class AddUserRequestContract : System.ComponentModel.INotifyPrope
{
private string _userName;
private string _password;
private string _uniqueIdentity;

[Newtonsoft.Json.JsonProperty("userName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UserName
Expand Down Expand Up @@ -8626,6 +8627,21 @@ public string Password
}
}

[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 Expand Up @@ -10381,9 +10397,25 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal
[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.19.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.3.0))")]
public partial class RoleServicePermissionContract : System.ComponentModel.INotifyPropertyChanged
{
private long _id;
private long _roleId;
private long _servicePermissionId;

[Newtonsoft.Json.JsonProperty("id", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public long Id
{
get { return _id; }

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

[Newtonsoft.Json.JsonProperty("roleId", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public long RoleId
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4709,6 +4709,10 @@
"password": {
"type": "string",
"nullable": true
},
"uniqueIdentity": {
"type": "string",
"nullable": true
}
}
},
Expand Down Expand Up @@ -5325,6 +5329,10 @@
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"roleId": {
"type": "integer",
"format": "int64"
Expand Down Expand Up @@ -5790,9 +5798,6 @@
}
},
"security": [
{
"Bearer": []
},
{
"Bearer": []
}
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>
<IsPackable>true</IsPackable>
<Version>0.0.0.18</Version>
<Version>0.0.0.19</Version>
<Description>client generated code.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>microservice,auth,authentication,client</PackageTags>
Expand Down

0 comments on commit 244fb92

Please sign in to comment.