Skip to content

Instantly share code, notes, and snippets.

@DmitrySikorsky
Created July 13, 2019 09:01
Show Gist options
  • Save DmitrySikorsky/63bc75b5c8b453d0e3c6892ddd0ff2f1 to your computer and use it in GitHub Desktop.
Save DmitrySikorsky/63bc75b5c8b453d0e3c6892ddd0ff2f1 to your computer and use it in GitHub Desktop.
public class Book
{
public int Id { get; set; }
public string NameEn { get; set; }
public string NameUk { get; set; }
public string DescriptionEn { get; set; }
public string DescriptionUk { get; set; }
public string AuthorEn { get; set; }
public string AuthorUk { get; set; }
public int Year { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment