18 lines
238 B
C#
18 lines
238 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Actions
|
|||
|
{
|
|||
|
internal struct BackupRangeInfo
|
|||
|
{
|
|||
|
public BackupRangeInfo(int start, int count)
|
|||
|
{
|
|||
|
this.start = start;
|
|||
|
this.count = count;
|
|||
|
}
|
|||
|
|
|||
|
internal int start;
|
|||
|
|
|||
|
internal int count;
|
|||
|
}
|
|||
|
}
|