13 lines
254 B
C#
13 lines
254 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Xml;
|
|
|
|
namespace NotificationsCore.Interfaces
|
|
{
|
|
interface INotification
|
|
{
|
|
bool SendNotification(XmlNode details, params object[] args);
|
|
}
|
|
}
|