30 lines
481 B
C#
30 lines
481 B
C#
using Microsoft.SharePoint;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
namespace SPSolutions.SharePoint.Alerts
|
|
{
|
|
public abstract class SPAlertAssociationContainer
|
|
{
|
|
private List<SPAlert> m_alerts;
|
|
public List<SPAlert> Alerts
|
|
{
|
|
get
|
|
{
|
|
return this.m_alerts;
|
|
}
|
|
}
|
|
public abstract string AssociationTitle
|
|
{
|
|
get;
|
|
}
|
|
public abstract string Id
|
|
{
|
|
get;
|
|
}
|
|
public SPAlertAssociationContainer()
|
|
{
|
|
this.m_alerts = new List<SPAlert>();
|
|
}
|
|
}
|
|
}
|