feat: implement generic data set manipulator, ref: NOISSUE

This commit is contained in:
Simon Diesenreiter
2024-12-05 23:36:23 +01:00
parent 2ed103abbf
commit 85d94eca2f
14 changed files with 568 additions and 71 deletions

View File

@@ -0,0 +1,4 @@
public interface IDataIndex<TIndexType>
{
public IList<TIndexType> GetIndices();
}