Moved event stuff

This commit is contained in:
Bjarke Berg
2019-05-27 13:53:53 +02:00
parent 00a121188a
commit e9324055e9
28 changed files with 39 additions and 65 deletions

View File

@@ -1,18 +0,0 @@
namespace Umbraco.Core.Events
{
internal class EventNameExtractorResult
{
public EventNameExtractorError? Error { get; private set; }
public string Name { get; private set; }
public EventNameExtractorResult(string name)
{
Name = name;
}
public EventNameExtractorResult(EventNameExtractorError error)
{
Error = error;
}
}
}