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

Commit

Permalink
Merge pull request #119 from nonsense66/feature/6596
Browse files Browse the repository at this point in the history
#6596 Added AppointmentTypeCodes: ClinicianScheduled (instead of Futu…
  • Loading branch information
lorddev committed May 23, 2016
2 parents 636971e + 8c058ec commit 12f6826
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions SnapMD.VirtualCare.ApiModels/Scheduling/AppointmentTypeCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,23 @@
public enum AppointmentTypeCode
{
/// <summary>
/// Not specified
/// Not specified.
/// </summary>
None,

/// <summary>
/// Future appointment
/// Clinician scheduled.
/// </summary>
Future,
ClinicianScheduled,

/// <summary>
/// Appointments on-demand
/// Appointments on-demand.
/// </summary>
OnDemand
OnDemand,

/// <summary>
/// Patient self-scheduled.
/// </summary>
PatientScheduled
}
}

0 comments on commit 12f6826

Please sign in to comment.