IReader.cs

16 lines | 255 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using System.Xml.Linq;

namespace yEd.XGML.IO.Read
{
    internal interface IReader<T>
    {
        T Read(XElement element);
    }
}