Reorg project folders

This commit is contained in:
Daniel Clark
2021-02-14 15:19:33 +00:00
parent 266f1938c3
commit cadf8f9ec0
61 changed files with 36 additions and 36 deletions
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace NotificationFlyout.Shared.UI.Helpers
{
internal class WndProcHandlerCollection : List<WndProcHandlerReference>, IWndProcHandlerCollection
{
private static readonly Lazy<WndProcHandlerCollection> _current = new(() => new WndProcHandlerCollection());
public static WndProcHandlerCollection Current => _current.Value;
}
}