diff --git a/Intercom/Intercom.nuspec b/Intercom/Intercom.nuspec index e1b86fe..8992c25 100644 --- a/Intercom/Intercom.nuspec +++ b/Intercom/Intercom.nuspec @@ -11,17 +11,20 @@ MIT - https://github.com/gonace/intercom + https://github.com/gonace/Intercom assets\icon.png - + + + + diff --git a/README.md b/README.md index 7609091..e81883e 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,25 @@ You can download the intercom client nuget. ## Usage > For the full documentation please read our [wiki](https://github.com/gonace/intercom/wiki)! +```c# +Intercom.Configure("baseUri", "bearerToken") + +Intercom.Companies... +Intercom.Me... +``` + +```c# +public class SomeClass +{ + private readonly ICompaniesClient _client; + + public SomeClass() + { + _client = new CompaniesClient("baseUri", "bearerToken") + } +} +``` + ```c# ```