This commit is contained in:
Alexander
2023-01-20 16:22:37 +03:00
parent d3171a1164
commit c89a6b2a71
5 changed files with 112 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
namespace anbs_cp.Interfaces;
/// <summary>
/// Интерфейс ключа
/// </summary>
public interface IEncryptKey
{
/// <summary>
/// Ключ
/// </summary>
public byte[] Key { get; set; }
}