Knocks/BackEnd/Knoks.Framework/Content/IContentGenerator.cs

10 lines
195 B
C#

using System.Threading.Tasks;
namespace Knoks.Framework.Content
{
public interface IContentGenerator
{
ContentResult GenerateContent(ContentSettings contentSettings);
}
}