14 lines
460 B
C#
14 lines
460 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Model.Glossary;
|
|
|
|
public class GlossaryTermModel
|
|
{
|
|
public string Id { get; set; } = "";
|
|
public string Term { get; set; } = "";
|
|
public string ShortDefinition { get; set; } = "";
|
|
public string LongDefinition { get; set; } = "";
|
|
public string Category { get; set; } = "";
|
|
public List<string> RelatedTermIds { get; set; } = new();
|
|
public List<string> RelatedEntityIds { get; set; } = new();
|
|
} |