13 lines
346 B
C#
13 lines
346 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a code entity, serving as a base type for code-related constructs.
|
|
/// </summary>
|
|
public class Code
|
|
{
|
|
public string Identifier { get; set; } = string.Empty;
|
|
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
public string CodingSystem { get; set; } = string.Empty;
|
|
} |