cs11dotnet7/vscode/Chapter05/PacktLibrary/Book.cs

9 lines
187 B
C#
Raw Normal View History

2022-02-20 18:22:06 +01:00
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; }
}