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