mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-12 03:09:05 +00:00
7 lines
324 B
C#
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);
|