AiSD.Laba1/Stack/NodeBook.cs

16 lines
261 B
C#
Raw Permalink 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;
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;
}
}