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 29, 2023
1 parent cb6cc94 commit b6fe280
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,7 @@ public partial class AddUserRequestContract : System.ComponentModel.INotifyPrope
{
private string _userName;
private string _password;
private string _whiteLabelKey;

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

[Newtonsoft.Json.JsonProperty("whiteLabelKey", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string WhiteLabelKey
{
get { return _whiteLabelKey; }

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

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.CallerMemberName] string propertyName = null)
Expand All @@ -751,8 +767,24 @@ 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 ApplicationInitializeRequestContract : System.ComponentModel.INotifyPropertyChanged
{
private string _whiteLabelKey;
private string _language;

[Newtonsoft.Json.JsonProperty("whiteLabelKey", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string WhiteLabelKey
{
get { return _whiteLabelKey; }

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

[Newtonsoft.Json.JsonProperty("language", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Language
{
Expand Down Expand Up @@ -1595,10 +1627,26 @@ 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 UserClaimContract : System.ComponentModel.INotifyPropertyChanged
{
private string _whiteLabelKey;
private string _userName;
private string _password;
private System.Collections.Generic.ICollection<ClaimContract> _claims;

[Newtonsoft.Json.JsonProperty("whiteLabelKey", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string WhiteLabelKey
{
get { return _whiteLabelKey; }

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

[Newtonsoft.Json.JsonProperty("userName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UserName
{
Expand Down Expand Up @@ -1765,9 +1813,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 UserSummaryContract : System.ComponentModel.INotifyPropertyChanged
{
private string _whiteLabelKey;
private string _userName;
private string _password;

[Newtonsoft.Json.JsonProperty("whiteLabelKey", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string WhiteLabelKey
{
get { return _whiteLabelKey; }

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

[Newtonsoft.Json.JsonProperty("userName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UserName
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,13 +362,21 @@
"password": {
"type": "string",
"nullable": true
},
"whiteLabelKey": {
"type": "string",
"nullable": true
}
}
},
"ApplicationInitializeRequestContract": {
"type": "object",
"additionalProperties": false,
"properties": {
"whiteLabelKey": {
"type": "string",
"nullable": true
},
"language": {
"type": "string",
"nullable": true
Expand Down Expand Up @@ -648,6 +656,10 @@
"type": "object",
"additionalProperties": false,
"properties": {
"whiteLabelKey": {
"type": "string",
"nullable": true
},
"userName": {
"type": "string",
"nullable": true
Expand Down Expand Up @@ -699,6 +711,10 @@
"type": "object",
"additionalProperties": false,
"properties": {
"whiteLabelKey": {
"type": "string",
"nullable": true
},
"userName": {
"type": "string",
"nullable": true
Expand Down Expand Up @@ -740,9 +756,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.5</Version>
<Version>0.0.0.6</Version>
<Description>client generated code.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>microservice,Identity,Identity,client</PackageTags>
Expand Down

0 comments on commit b6fe280

Please sign in to comment.