20 lines
405 B
C#
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;
|
|
}
|
|
}
|
|
}
|