AiSD.Laba1/TestConsoleApp/NodeBook.cs

16 lines
270 B
C#
Raw Normal View History

2023-02-15 14:40:58 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestConsoleApp
{
internal class NodeBook
{
public Book? book = null;
public NodeBook? nextNodeBook = null;
}
}