11 lines
259 B
C#
11 lines
259 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record Created
|
|
{
|
|
public static CreatedEventArgs<TValue> As<TValue>(TValue value) =>
|
|
new(value);
|
|
|
|
public static CreatedEventArgs<TValue> As<TValue>() where TValue : new() =>
|
|
new(new TValue());
|
|
}
|