cs11dotnet7/vscode/Chapter05/PacktLibrary/Book.cs
2022-02-20 17:22:06 +00:00

9 lines
187 B
C#

namespace Packt.Shared;
public class Book
{
// required is not working in .NET 7 Preview 1
public /* required */ string? Isbn { get; set; }
public string? Title { get; set; }
}