27 lines
587 B
C#
27 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestView
|
|
{
|
|
public class BookInfo
|
|
{
|
|
public string Redaction;
|
|
public string AuthorName;
|
|
public string AuthorSurname;
|
|
public string AuthorLife;
|
|
public string Title;
|
|
|
|
public BookInfo(string Redaction, string AuthorName, string AuthorSurname, string AuthorLife, string Title)
|
|
{
|
|
this.Redaction = Redaction;
|
|
this.AuthorName = AuthorName;
|
|
this.AuthorSurname = AuthorSurname;
|
|
this.AuthorLife = AuthorLife;
|
|
this.Title = Title;
|
|
}
|
|
}
|
|
}
|