mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:49:07 +00:00
8 lines
161 B
C#
8 lines
161 B
C#
namespace AIStudio.Settings;
|
|
|
|
public sealed class Data
|
|
{
|
|
public Version Version { get; init; }
|
|
|
|
public List<Provider> Providers { get; init; } = new();
|
|
} |