21 lines
387 B
C#
21 lines
387 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Controls.Models
|
|||
|
{
|
|||
|
public class MergeCells
|
|||
|
{
|
|||
|
public string Header;
|
|||
|
public int[] Indexes;
|
|||
|
|
|||
|
public MergeCells(string header, int[] indexes)
|
|||
|
{
|
|||
|
Header = header;
|
|||
|
Indexes = indexes;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|