Files
Toolkit2/Toolkit.Foundation/Synchronize.cs
T
TheXamlGuy 29509e9d7a WIP
2024-06-05 19:18:17 +01:00

11 lines
287 B
C#

namespace Toolkit.Foundation;
public record Synchronize
{
public static SynchronizeEventArgs<TValue, TOptions> As<TValue, TOptions>(TOptions options)
where TOptions : class => new(options);
public static SynchronizeEventArgs<TValue> As<TValue>() =>
new();
}