IReader.cs

13 lines | 197 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace RW_Tool.Interface
{
    public interface IReader<T1,T2>
    {
        T1 Read(T2 param);
    }
}