Files
PowerToys/Wox.Infrastructure/ISingleton.cs

13 lines
191 B
C#
Raw Normal View History

2015-01-02 23:07:49 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Infrastructure
{
interface ISingleton<T>
{
T Instance { get; }
}
}