mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
29 lines
723 B
C#
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; } = [];
|
|
} |