Created
July 9, 2013 16:01
-
-
Save geoffreysmith/5958593 to your computer and use it in GitHub Desktop.
stub item
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 StubItem : Item | |
{ | |
public StubItem([NotNull] ID itemID, [NotNull] ItemData data, [NotNull] Database database) | |
: base(itemID, data, database) | |
{ | |
} | |
private Language originalLanguage; | |
public Language OriginalLanguage | |
{ | |
get | |
{ | |
return originalLanguage ?? Language; | |
} | |
set | |
{ | |
originalLanguage = value; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment