Skip to content

Commit

Permalink
Update package
Browse files Browse the repository at this point in the history
  • Loading branch information
MahdiyarGHD committed Nov 27, 2023
1 parent 234f49a commit b9c20ac
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10677,11 +10677,27 @@ 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 ServicePermissionContract : System.ComponentModel.INotifyPropertyChanged
{
private long _id;
private string _microserviceName;
private string _serviceName;
private string _methodName;
private AccessPermissionType _accessType;

[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("microserviceName", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string MicroserviceName
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5408,6 +5408,10 @@
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"microserviceName": {
"type": "string",
"nullable": true
Expand Down Expand Up @@ -5740,6 +5744,9 @@
}
},
"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>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.16</Version>
<Version>0.0.0.17</Version>
<Description>client generated code.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>microservice,auth,authentication,client</PackageTags>
Expand Down

0 comments on commit b9c20ac

Please sign in to comment.