AiSD.Laba1/TestConsoleApp/Book.cs

15 lines
248 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 Book
{
public String name;
public String description;
}
}