Ensure item is updated when modified

This commit is contained in:
TheXamlGuy
2024-05-21 21:57:26 +01:00
parent 83fef5e399
commit fda5e7db6c
5 changed files with 31 additions and 23 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace Toolkit.Foundation;
public record MoveTo
{
public static MoveToEventArgs<TValue> As<TValue>(int oldIndex, int newIndex) =>
new(oldIndex, newIndex);
}