10 lines
157 B
C#
10 lines
157 B
C#
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IEventSubscriber
|
|
{
|
|
void EntityChanged(SyncEvent syncEvent);
|
|
}
|
|
}
|