Files
mixtape/zero.Core/Handlers/IPageCreationHandler.cs
T
2020-11-06 14:16:11 +01:00

16 lines
302 B
C#

using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using zero.Core.Entities;
namespace zero.Core.Handlers
{
public interface IPageCreationHandler : IHandler
{
void OnCreate(IPage page);
}
}