12 lines
379 B
C#
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);
|
|
}
|
|
} |