14 lines
380 B
C#
14 lines
380 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a code entity, serving as a base type for code-related constructs.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=3e09f19 -->
|
|
public class Code
|
|
{
|
|
public string Identifier { get; set; } = string.Empty;
|
|
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
public string CodingSystem { get; set; } = string.Empty;
|
|
} |