This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name LibraryThing Suggestion Hider | |
// @namespace https://whatcharacter.com | |
// @version 1.1 | |
// @description Toggle visibility of checkmarked books | |
// @author Jacob P. Silvia ([email protected]) | |
// @match https://www.librarything.com/work/*/recommendations/* | |
// @match https://www.librarything.com/work/*/recommendations | |
// @grant none | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ExampleGame : Game, IGame | |
{ | |
public Game Game => this; | |
private readonly ISomeDependency _someDependency; | |
public ExampleGame(ISomeDependency someDependency) | |
{ | |
_someDependency = someDependency; | |
} |