AI-Studio/app/MindWork AI Studio/Settings/DataModel/Bias.cs
2024-10-20 12:35:03 +02:00

29 lines
723 B
C#

namespace AIStudio.Settings.DataModel;
public sealed class Bias
{
/// <summary>
/// The unique identifier of the bias.
/// </summary>
public Guid Id { get; init; } = Guid.Empty;
/// <summary>
/// In which category the bias is located.
/// </summary>
public BiasCategory Category { get; set; } = BiasCategory.NONE;
/// <summary>
/// The bias description.
/// </summary>
public string Description { get; init; } = string.Empty;
/// <summary>
/// Related bias.
/// </summary>
public IReadOnlyList<Guid> Related { get; init; } = [];
/// <summary>
/// Related links.
/// </summary>
public IReadOnlyList<string> Links { get; init; } = [];
}