Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

18 lines
311B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using SafeOrbit.Memory;
  7. namespace SecureData.Data
  8. {
  9. public class ProtectedData
  10. {
  11. public string Password { get; set; }
  12. public string Passphrase { get; set; }
  13. }
  14. }