naps2/NAPS2.Lib/EtoForms/Widgets/DeviceChangedEventArgs.cs
2024-08-06 22:12:56 -07:00

10 lines
227 B
C#

using NAPS2.Scan;
namespace NAPS2.EtoForms.Widgets;
public class DeviceChangedEventArgs : EventArgs
{
public required DeviceChoice PreviousChoice { get; init; }
public required DeviceChoice NewChoice { get; init; }
}