19 lines
232 B
C#
19 lines
232 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Data
|
|||
|
{
|
|||
|
public interface IDataSource<T> where T : IDataSerial
|
|||
|
{
|
|||
|
int SerialCount { get; }
|
|||
|
|
|||
|
T this[int index]
|
|||
|
{
|
|||
|
get;
|
|||
|
}
|
|||
|
|
|||
|
void Add(T serial);
|
|||
|
|
|||
|
event EventHandler DataChanged;
|
|||
|
}
|
|||
|
}
|