Skip to content

Instantly share code, notes, and snippets.

@AbhinavPradeep
Created December 12, 2019 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhinavPradeep/d11efa0cc16a87fb921d3e3edfbd38ca to your computer and use it in GitHub Desktop.
Save AbhinavPradeep/d11efa0cc16a87fb921d3e3edfbd38ca to your computer and use it in GitHub Desktop.
namespace AuthorSerialize
{
public class Book
{
public string BookName;
public string Genre;
public string ISBNcode;
public Book()
{
}
public Book(string BookName, string Genre, string ISBNCode)
{
this.BookName = BookName;
this.Genre = Genre;
this.ISBNcode = ISBNCode;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment