Files
sockeye/server/biz/INotifiableObject.cs
2022-12-16 06:01:23 +00:00

12 lines
379 B
C#

using System.Threading.Tasks;
using Sockeye.Models;
namespace Sockeye.Biz
{
/// <summary>
/// Interface for biz objects that support notification
/// </summary>
internal interface INotifiableObject
{
Task HandlePotentialNotificationEvent(SockEvent ayaEvent, ICoreBizObjectModel newObject, ICoreBizObjectModel originalObject = null);
}
}