mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-27 03:53:36 +00:00
10 lines
257 B
C#
10 lines
257 B
C#
|
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
|
||
|
|
public sealed class DataModelComparison
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The user's saved presets for the model comparison assistant.
|
||
|
|
/// </summary>
|
||
|
|
public List<ModelComparisonPreset> Presets { get; set; } = [];
|
||
|
|
}
|