Files
PowerToys/Wox.Infrastructure/ISingleton.cs
2015-01-02 23:07:49 +08:00

13 lines
191 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Infrastructure
{
interface ISingleton<T>
{
T Instance { get; }
}
}