mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-02 15:42:56 +00:00
23 lines
574 B
C#
23 lines
574 B
C#
|
namespace AIStudio.Tools.PluginSystem;
|
||
|
|
||
|
public abstract record ConfigurationBaseObject : IConfigurationObject
|
||
|
{
|
||
|
#region Implementation of IConfigurationObject
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public abstract string Id { get; init; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public abstract uint Num { get; init; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public abstract string Name { get; init; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public abstract bool IsEnterpriseConfiguration { get; init; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public abstract Guid EnterpriseConfigurationPluginId { get; init; }
|
||
|
|
||
|
#endregion
|
||
|
}
|