namespace adas_core.Domain.Models; /// /// Represents a code entity, serving as a base type for code-related constructs. /// public class Code { public string Identifier { get; set; } = string.Empty; public string Text { get; set; } = string.Empty; public string CodingSystem { get; set; } = string.Empty; }