8 lines
145 B
C#
8 lines
145 B
C#
namespace MyLibrary
|
|
{
|
|
public class Book
|
|
{
|
|
public string Title { get; set; }
|
|
public string Author { get; set; }
|
|
}
|
|
} |