You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
406 B

using w21library.classes.Intf;
namespace w21library.classes
{
public class Book : IBook
{
public Book(string author, string name)
{
Name = name;
Author = author;
Uuid = Guid.NewGuid().ToString("N");
}
public string Name { get; set; }
public string Author { get; set; }
public string Uuid { get; set; }
}
}