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

20 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NotificationsCore.NotificationTypes
{
public class DailyDigest: Notification
{
public DailyDigest()
{
}
public override bool SendNotification(System.Xml.XmlNode details, params object[] args)
{
return true;
}
}
}