BookInfo.Book.Book C# (CSharp) Method

Book() public method

public Book ( ) : System.Collections.Generic
return System.Collections.Generic
        public Book()
        {
            Tags = new List<BookTag>();
            Author = new List<string>();
            Translator = new List<string>();
            Rating = new BookRating();
            Title = "";
            Subtitle = "";
            AuthorIntro = "";
            Imageurl = "";
            Summary = "";
            Isbn = "";
            Pages = "";
            Price = "";
            Publisher = "";
            Pubdate = "";
            Binding = "";
            Weblink = "";
        }
Book