// Author: Gockner, Simon // Created: 2021-04-27 // Copyright(c) 2021 SimonG. All Rights Reserved. namespace Lib.Xml.Interfaces { public interface IXmlWriter { void Write(T data, string filePath); } public interface IXmlWriter where TXml : TData { void Write(TData data, string filePath); } }