view Implab/Components/IFactory.cs @ 234:8dd666e6b6bf v2

Added implab nuget spec
author cin
date Thu, 05 Oct 2017 09:21:23 +0300
parents 97fbbf816844
children
line wrap: on
line source

using System;

namespace Implab.Components {
    public interface IFactory<out T> {
        T Create();
    }
}