mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
9 lines
187 B
C#
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; }
|
|
}
|