mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-02 15:42:56 +00:00
26 lines
674 B
C#
26 lines
674 B
C#
|
namespace AIStudio.Tools.PluginSystem;
|
||
|
|
||
|
public sealed record NoConfigurationObject : ConfigurationBaseObject
|
||
|
{
|
||
|
public static readonly NoConfigurationObject INSTANCE = new();
|
||
|
|
||
|
private NoConfigurationObject()
|
||
|
{
|
||
|
this.Id = Guid.Empty.ToString();
|
||
|
this.Name = "No Configuration";
|
||
|
}
|
||
|
|
||
|
#region Overrides of ConfigurationBaseObject
|
||
|
|
||
|
public override string Id { get; init; }
|
||
|
|
||
|
public override uint Num { get; init; }
|
||
|
|
||
|
public override string Name { get; init; }
|
||
|
|
||
|
public override bool IsEnterpriseConfiguration { get; init; }
|
||
|
|
||
|
public override Guid EnterpriseConfigurationPluginId { get; init; }
|
||
|
|
||
|
#endregion
|
||
|
}
|