1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
using System.Collections.Generic;
using KeePassRPC.Models.Shared;
namespace KeePassRPC
{
public class DatabaseConfig
{
public int Version = 3;
public string RootUUID;
public MatchAccuracyMethod DefaultMatchAccuracy;
public Dictionary<string, MatchAccuracyMethod> MatchedURLAccuracyOverrides;
public PlaceholderHandling DefaultPlaceholderHandling;
public DatabaseConfig()
{
DefaultMatchAccuracy = MatchAccuracyMethod.Domain;
MatchedURLAccuracyOverrides = new Dictionary<string, MatchAccuracyMethod>();
DefaultPlaceholderHandling = PlaceholderHandling.Disabled;
}
}
}
|