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 RelatedTermIds { get; set; } = new(); public List RelatedEntityIds { get; set; } = new(); }