упс, 2 и начало 3 лабы

This commit is contained in:
2024-09-26 12:51:52 +04:00
parent 9e89370e0c
commit 7408afe8aa
46 changed files with 1626 additions and 65 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Valova_VisualComponents.Models
{
public class ComponentDocumentWithTableHeaderConfig : ComponentDocumentConfig
{
public bool UseUnion { get; set; }
public (int Columns, int Rows) ColumnsRowsDataCount { get; set; }
public List<(int Column, int Row)> ColumnsRowsWidth { get; set; }
public List<(int StartIndex, int Count)> ColumnUnion { get; set; }
public List<(int ColumnIndex, int RowIndex, string Header, string PropertyName)> Headers { get; set; }
}
}