Files
OurUmbraco/Notification/Notification.cs
T

18 lines
401 B
C#
Raw Normal View History

2012-12-17 09:41:11 +01:00
using System;
using System.Collections.Generic;
using System.Text;
using NotificationsCore.Interfaces;
using System.Xml;
namespace NotificationsCore
{
public abstract class Notification: INotification
{
#region INotification Members
public virtual bool SendNotification(XmlNode details, params object[] args) { return false; }
#endregion
}
}