Files
KOP/Valova_App/Book.cs

22 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace custom_App
{
public class Book
{
public string Name { get; set; }
public string Author { get; set; }
public Book(string author, string name)
{
Author = author;
Name = name;
}
public Book() { }
}
}