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