Agent Tests for API, MAUI, and Slop Features
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user