Skip to content

Instantly share code, notes, and snippets.

@DmitrySikorsky
Created July 13, 2019 09:03
Show Gist options
  • Save DmitrySikorsky/9098efdece08042c95f383ebaf53876a to your computer and use it in GitHub Desktop.
Save DmitrySikorsky/9098efdece08042c95f383ebaf53876a to your computer and use it in GitHub Desktop.
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