Files
Toolkit2/Toolkit.Foundation/Edit.cs
T
2024-05-14 16:52:47 +01:00

11 lines
250 B
C#

namespace Toolkit.Foundation;
public record Edit
{
public static EditEventArgs<TValue> As<TValue>(TValue value) =>
new(value);
public static EditEventArgs<TValue> As<TValue>() where TValue : new() =>
new(new TValue());
}