namespace Wino.Domain.Interfaces { public interface IHtmlPreviewer { /// /// Returns a preview of the HTML content. /// /// HTML content string GetHtmlPreview(string htmlContent); } }