public Boolean Save(String Path, String Key) { return(Arquivo.Gravar(Path, Cipher.Encrypt(JsonConvert.SerializeObject(this), Key))); }
public Root Read(String Path, String Key) { return(JsonConvert.DeserializeObject <Root>(Cipher.Decrypt(Arquivo.Ler(Path), Key))); }