Skip to content

Commit

Permalink
Internal improvements
Browse files Browse the repository at this point in the history
- Fixed endpoint API
- Added phone number to user edit
- Moved to 1.0.7
  • Loading branch information
alandoherty committed Aug 13, 2018
1 parent 4feeae0 commit 2c13869
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/WifiPlug.Api/Entities/EndpointAddEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class EndpointAddEntity
/// <summary>
/// Gets or sets the application UUID.
/// </summary>
[JsonProperty("application")]
[JsonProperty("application_uuid")]
public Guid ApplicationUUID { get; set; }

/// <summary>
Expand Down
6 changes: 6 additions & 0 deletions src/WifiPlug.Api/Entities/UserEditEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@ public class UserEditEntity
/// </summary>
[JsonProperty(PropertyName = "family_name")]
public string FamilyName { get; set; }

/// <summary>
/// Gets or sets the phone number.
/// </summary>
[JsonProperty(PropertyName = "phone")]
public string PhoneNumber { get; set; }
}
}
6 changes: 3 additions & 3 deletions src/WifiPlug.Api/WifiPlug.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
<PackageProjectUrl>https://wifiplug.co.uk</PackageProjectUrl>
<RepositoryUrl>https://github.com/wifiplug/api-client-net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>0.1.0.6</AssemblyVersion>
<FileVersion>0.1.0.6</FileVersion>
<AssemblyVersion>0.1.0.7</AssemblyVersion>
<FileVersion>0.1.0.7</FileVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageIconUrl>https://s3.eu-west-2.amazonaws.com/wifiplug-pub/nuget-icons/wifiplug.png</PackageIconUrl>
<PackageLicenseUrl>https://github.com/wifiplug/api-client-net/blob/master/LICENSE</PackageLicenseUrl>
<Version>1.0.6</Version>
<Version>1.0.7</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 2c13869

Please sign in to comment.