Files
C4IT-F4SD-Client/FasdDesktopUi/Basics/CustomEvents/IndexEventArgs.cs
2025-11-11 11:03:42 +01:00

21 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace FasdDesktopUi.Basics.CustomEvents
{
internal class IndexEventArgs : RoutedEventArgs
{
public int OldValue { get; set; } = -1;
public int NewValue { get; set; } = -1;
public IndexEventArgs(RoutedEvent routedEvent) : base(routedEvent)
{
}
}
}