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

Commit

Permalink
Merge branch 'hotfix/1.12.2' into release/1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lorddev committed Aug 27, 2015
2 parents c5677f3 + 513f7a7 commit 5e577de
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions SnapMD.ConnectedCare.Sdk/Models/OnDemandRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using SnapMD.ConnectedCare.ApiModels;
using System.Collections.Generic;
using SnapMD.Sdk.Models;

namespace SnapMD.ConnectedCare.Sdk.Models
{
public class OnDemandRequest
{
public IntakeConcern[] Concerns { get; set; }
public OnDemandRequest()
{
Concerns = new List<IntakeConcern>();
}

public List<IntakeConcern> Concerns { get; set; }
public string Phone { get; set; }
public int PatientId { get; set; }
}
Expand Down

0 comments on commit 5e577de

Please sign in to comment.