AI-Studio/app/MindWork AI Studio/Tools/ERIClient/DataModel/SecurityRequirements.cs
2025-02-09 12:36:37 +01:00

7 lines
324 B
C#

namespace AIStudio.Tools.ERIClient.DataModel;
/// <summary>
/// Represents the security requirements for this data source.
/// </summary>
/// <param name="AllowedProviderType">Which provider types are allowed to process the data?</param>
public readonly record struct SecurityRequirements(ProviderType AllowedProviderType);