Files
Toolkit2/Toolkit.Foundation/RemoveAndInsertAtEventArgs.cs
T
2024-05-21 20:32:42 +01:00

4 lines
126 B
C#

namespace Toolkit.Foundation;
public record RemoveAndInsertAtEventArgs<TValue>(int OldIndex, int NewIndex, TValue Value);