using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CryptoProvider { public interface IAesKey { public string? IV { get; set; } public string? Key { get; set; } } public class AesKey : IAesKey { public string? IV { get; set; } public string? Key { get; set; } } }