10 lines
235 B
C#
10 lines
235 B
C#
namespace adas_core.Domain.Models;
|
|
|
|
public class Code
|
|
{
|
|
public string Identifier { get; set; } = string.Empty;
|
|
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
public string CodingSystem { get; set; } = string.Empty;
|
|
} |