1
0
This commit is contained in:
Debug_pro
2026-06-07 18:14:39 +03:00
commit b74b40209b
24 changed files with 2528 additions and 0 deletions

12
Models/AnalysisRow.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace Lab9.Models;
public class AnalysisRow
{
public int ElementCount { get; set; }
public string TimSort { get; set; } = string.Empty;
public string Msd { get; set; } = string.Empty;
public string Communist { get; set; } = string.Empty;
}