// Author: Gockner, Simon // Created: 2021-04-27 // Copyright(c) 2021 SimonG. All Rights Reserved. namespace Lib.Xml.Interfaces { public interface IXmlReader where T : new() { T Read(string filePath); } }