7 lines
185 B
C#
7 lines
185 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record Modified
|
|
{
|
|
public static ModifiedEventArgs<TValue> As<TValue>(TValue oldValue, TValue newValue) =>
|
|
new(oldValue, newValue);
|
|
} |