mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 15:31:37 +00:00
10 lines
330 B
C#
10 lines
330 B
C#
|
|
namespace AIStudio.Agents.AssistantAudit;
|
||
|
|
|
||
|
|
public sealed class AssistantAuditFinding
|
||
|
|
{
|
||
|
|
public string Category { get; init; } = string.Empty;
|
||
|
|
public string Location { get; init; } = string.Empty;
|
||
|
|
public string Description { get; init; } = string.Empty;
|
||
|
|
public string Recommendation { get; init; } = string.Empty;
|
||
|
|
}
|