mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-29 12:19:48 +00:00
11 lines
255 B
C#
11 lines
255 B
C#
using System.Security;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
public readonly record struct EncryptedText(string EncryptedData)
|
|
{
|
|
public EncryptedText() : this(string.Empty)
|
|
{
|
|
throw new SecurityException("Please provide the encrypted data.");
|
|
}
|
|
} |