using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LMS.Repository.RSAKey { public class RSAKeyGenerateModel { public string PublicKey { get; set; } public string EncryptedPrivateKey { get; set; } public string EncryptedKey { get; set; } public string EncryptionIV { get; set; } } }