mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-07 07:14:02 +00:00
8 lines
187 B
C#
8 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; }
|
|
}
|