namespace AIStudio.Settings;
/// 
/// The data model for the settings file.
/// 
public sealed class Data
{
    /// 
    /// The version of the settings file. Allows us to upgrade the settings,
    /// when a new version is available.
    /// 
    public Version Version { get; init; } = Version.V1;
    /// 
    /// List of configured providers.
    /// 
    public List Providers { get; init; } = new();
}