mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-22 22:11:36 +00:00
8 lines
208 B
C#
8 lines
208 B
C#
|
|
namespace AIStudio.Settings;
|
||
|
|
|
||
|
|
public sealed class ManagedEditableDefaultState
|
||
|
|
{
|
||
|
|
public Guid ConfigPluginId { get; init; } = Guid.Empty;
|
||
|
|
|
||
|
|
public string LastAppliedValue { get; init; } = string.Empty;
|
||
|
|
}
|