using System.Xml.Linq; namespace Medusa.Core.Handlers { public interface IHandler { Task HandleAsync(string model); } }