Skip to content

Commit

Permalink
Merge branch 'feature/scs'
Browse files Browse the repository at this point in the history
  • Loading branch information
nertsch committed May 4, 2021
2 parents 857e1bc + 5357037 commit 4082b47
Show file tree
Hide file tree
Showing 38 changed files with 2,036 additions and 1,151 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<Version>1.0.2.575</Version>
</PackageReference>
<PackageReference Include="Google.Apis.Tasks.v1">
<Version>1.49.0.2083</Version>
<Version>1.51.0.2231</Version>
</PackageReference>
<PackageReference Include="Google.GData.Contacts">
<Version>2.2.0</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<Version>1.8.6.1</Version>
</PackageReference>
<PackageReference Include="Google.Apis.Tasks.v1">
<Version>1.49.0.2083</Version>
<Version>1.51.0.2231</Version>
</PackageReference>
<PackageReference Include="Google.GData.Contacts">
<Version>2.2.0</Version>
Expand Down
60 changes: 60 additions & 0 deletions CalDavSynchronizer.OAuth.Swisscom/AddressbookInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
using System;
using System.Collections.Generic;

using System.Globalization;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

namespace CalDavSynchronizer.OAuth.Swisscom
{
public partial class AddressbookInfo
{
[JsonProperty("abook_public_id")]
public String PublicId { get; set; }

[JsonProperty("location_info")]
public LocationInfo LocationInfo { get; set; }

[JsonProperty("telephone_numbers")]
public String[] ListOfMsisdn { get; set; }
}

public partial class LocationInfo
{
[JsonProperty("addressLine1")]
public string AddressLine1 { get; set; }

[JsonProperty("addressLine2")]
public string AddressLine2 { get; set; }

[JsonProperty("addressLine3")]
public string AddressLine3 { get; set; }
}

public partial class CredentialSet
{
[JsonProperty("username")]
public string Username { get; set; }

[JsonProperty("password")]
public string Password { get; set; }

[JsonProperty("url")]
public string Url { get; set; }

[JsonProperty("interval")]
public long Interval { get; set; }

[JsonProperty("mode")]
public string Mode { get; set; }

[JsonProperty("chunkSize")]
public long ChunkSize { get; set; }

[JsonProperty("persistentConnection")]
public bool PersistentConnection { get; set; }

[JsonProperty("collectionSync")]
public bool CollectionSync { get; set; }
}
}
13 changes: 0 additions & 13 deletions CalDavSynchronizer.OAuth.Swisscom/ApiResponse.cs

This file was deleted.

12 changes: 6 additions & 6 deletions CalDavSynchronizer.OAuth.Swisscom/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>
9 changes: 0 additions & 9 deletions CalDavSynchronizer.OAuth.Swisscom/App.xaml

This file was deleted.

17 changes: 0 additions & 17 deletions CalDavSynchronizer.OAuth.Swisscom/App.xaml.cs

This file was deleted.

15 changes: 0 additions & 15 deletions CalDavSynchronizer.OAuth.Swisscom/Authorize.xaml

This file was deleted.

45 changes: 0 additions & 45 deletions CalDavSynchronizer.OAuth.Swisscom/Authorize.xaml.cs

This file was deleted.

Loading

0 comments on commit 4082b47

Please sign in to comment.