Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.

Commit 161e5d1

Browse files
committed
2 parents 561e2af + 788ce73 commit 161e5d1

3 files changed

Lines changed: 24 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
An open-source .NET client wrapper for the SnapMD Connected Care REST API.
44

5-
General documentation for the REST API can be found at [https://sandbox.connectedcare.md/api/Help/](https://sandbox.connectedcare.md/api/Help/).
5+
General documentation for the REST API can be found at [https://sandbox.connectedcare.md/api/Help/](https://sandbox.connectedcare.md/api/Help/). Additional API documentation is available in [our GitHub wiki](https://github.com/SnapMD/connectedcare-sdk/wiki).
66

77
## Dependencies
88

99
This project uses [Json.NET](https://github.com/JamesNK/Newtonsoft.Json) for serialization.
1010

1111
## Configuration
1212

13-
Unit tests require a separate config file stored next to the App.config, called `SnapMD.ConnectedCare.Sdk.Test.Properties.Settings.csproj`. This file is not in the `.gitignore` file because this creates compilation errors for new downloads or CI servers. The file should look like this:
13+
Unit tests require a separate config file stored next to the App.config, called `SnapMD.ConnectedCare.Sdk.Test.Properties.Settings.csproj`. This file is not in the `.gitignore` file because if it's not in the repository it can result in compilation errors for brand-new installations. The file should look like this:
1414

1515
<?xml version="1.0"?>
1616
<SnapMD.ConnectedCare.Sdk.Tests.Properties.Settings>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#region Copyright
2+
// Copyright 2015 SnapMD, Inc.
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
// http://www.apache.org/licenses/LICENSE-2.0
7+
// Unless required by applicable law or agreed to in writing, software
8+
// distributed under the License is distributed on an "AS IS" BASIS,
9+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
// See the License for the specific language governing permissions and
11+
// limitations under the License.
12+
#endregion
13+
14+
namespace SnapMD.ConnectedCare.ApiModels
15+
{
16+
public class Function
17+
{
18+
public int FunctionId { get; set; }
19+
public string Description { get; set; }
20+
}
21+
}

SnapMD.ConnectedCare.ApiModels/SnapMD.ConnectedCare.ApiModels.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
<Compile Include="CodeSetResponse.cs" />
6767
<Compile Include="ConsultationEvents.cs" />
6868
<Compile Include="DoctorRecord.cs" />
69+
<Compile Include="Function.cs" />
6970
<Compile Include="HospitalRecord.cs" />
7071
<Compile Include="GuardianRecord.cs" />
7172
<Compile Include="PatientRecord.cs" />

0 commit comments

Comments
 (0)