-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from SKYWARE-Group/dev (v0.0.5)
v0.0.5
- Loading branch information
Showing
5 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
namespace Skyware.Lis.AkitaModel.Courier; | ||
|
||
// Ignore Spelling: hl ngh | ||
|
||
/// <summary> | ||
/// HL7 syntax dialect. | ||
/// </summary> | ||
public class Dialect | ||
{ | ||
|
||
/// <summary> | ||
/// Identifier in the Courier system, e.g. "ngh-2020". | ||
/// </summary> | ||
public string Id { get; set; } | ||
|
||
/// <summary> | ||
/// Friendly name, e.g. "North General Hospital 2020". | ||
/// </summary> | ||
public string Name { get; set; } | ||
|
||
/// <summary> | ||
/// Base HL7 version, e.g. "2.5.1". | ||
/// </summary> | ||
public string Hl7Version { get; set; } | ||
|
||
/// <summary> | ||
/// Description and further details. | ||
/// </summary> | ||
public string Description { get; set; } | ||
|
||
/// <summary> | ||
/// True if this dialect is default one for Courier system. | ||
/// </summary> | ||
public bool IsDefault { get; set; } = false; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters