mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-15 05:22:11 +00:00
14 lines
493 B
C#
14 lines
493 B
C#
namespace AIStudio.Settings.DataModel;
|
|
|
|
/// <summary>
|
|
/// Enterprise-managed approval entry for an assistant plugin hash.
|
|
/// </summary>
|
|
public sealed class DataAssistantPluginEnterpriseApproval
|
|
{
|
|
public string PluginHash { get; init; } = string.Empty;
|
|
public string DisplayName { get; init; } = string.Empty;
|
|
public string Comment { get; init; } = string.Empty;
|
|
public string ApprovedBy { get; init; } = string.Empty;
|
|
public DateTimeOffset? ApprovedAtUtc { get; init; }
|
|
}
|