Files
OurUmbraco/Notification/Interfaces/INotification.cs
T
Sebastiaan Janssen 810cbd267f Initial commit
2012-12-17 09:41:11 +01:00

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);
}
}