Mass rename project for rebranding
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Wallet;
|
||||
|
||||
public record Unarchive
|
||||
{
|
||||
public static UnarchiveEventArgs<TValue> As<TValue>(TValue value) =>
|
||||
new(value);
|
||||
|
||||
public static UnarchiveEventArgs<TValue> As<TValue>() where TValue : new() =>
|
||||
new(new TValue());
|
||||
}
|
||||
Reference in New Issue
Block a user