Created
July 13, 2019 09:03
-
-
Save DmitrySikorsky/9098efdece08042c95f383ebaf53876a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Book | |
{ | |
public int Id { get; set; } | |
public int NameId { get; set; } | |
public int DescriptionId { get; set; } | |
public int AuthorId { get; set; } | |
public int Year { get; set; } | |
public virtual LocalizationSet Name { get; set; } | |
public virtual LocalizationSet Description { get; set; } | |
public virtual LocalizationSet Author { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment