public BooruBoard(BooruBoard board) { URL = board.URL; Name = board.Name; Password = board.Password; UserName = board.UserName; ProviderType = board.ProviderType; PasswordSalt = board.PasswordSalt; }
public BooruBoard(string url, string name, ProviderAccessType providerType) { URL = url; Name = name; ProviderType = providerType; }