File: PwEntryDatabase.cs

package info (click to toggle)
keepass2-plugin-keepasshttp 1.8.4.2%2Bdfsg1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,816 kB
  • sloc: cs: 2,273; makefile: 7
file content (25 lines) | stat: -rw-r--r-- 530 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using KeePassLib;

namespace KeePassHttp
{
    class PwEntryDatabase
    {
        private PwEntry _entry;
        public PwEntry entry
        {
            get { return _entry; }
        }
        private PwDatabase _database;
        public PwDatabase database
        {
            get { return _database; }
        }

        //public PwEntryDatabase(ref PwEntry e, ref PwDatabase db)
        public PwEntryDatabase(PwEntry e, PwDatabase db)
        {
            _entry = e;
            _database = db;
        }
    }
}