AiSD.Laba1/TestConsoleApp/NodeBook.cs
2023-02-16 15:52:33 +04:00

16 lines
261 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Stack
{
internal class NodeBook
{
public Book? book = null;
public NodeBook? nextNodeBook = null;
}
}