Created
July 13, 2019 09:01
-
-
Save DmitrySikorsky/63bc75b5c8b453d0e3c6892ddd0ff2f1 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 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