mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 03:49:06 +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();
|
||
|
}
|