IWriter.cs

16 lines | 254 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.Write
{
    internal interface IWriter<T>
    {
        XElement Write(T elem);
    }
}