Exemplo n.º 1
0
 public static bool IsEntryInRecycleBin(this PwDatabase db, PwEntry entry)
 {
     if (db.RecycleBinEnabled)
     {
         return(entry.IsContainedIn(db.GetRecycleBinGroup()));
     }
     return(false);
 }