mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 21:49:06 +00:00
16 lines
314 B
C#
16 lines
314 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace AIStudio.Settings;
|
||
|
|
||
|
public interface IExternalDataSource : IDataSource, ISecretId
|
||
|
{
|
||
|
#region Implementation of ISecretId
|
||
|
|
||
|
[JsonIgnore]
|
||
|
string ISecretId.SecretId => this.Id;
|
||
|
|
||
|
[JsonIgnore]
|
||
|
string ISecretId.SecretName => this.Name;
|
||
|
|
||
|
#endregion
|
||
|
}
|