-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSettingsBase.cs
28 lines (27 loc) · 1.27 KB
/
SettingsBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// <copyright file="SettingsBase.cs" company="Engage Software">
// Engage: Events - http://www.EngageSoftware.com
// Copyright (c) 2004-2011
// by Engage Software ( http://www.engagesoftware.com )
// </copyright>
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
// CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
namespace Engage.Dnn.Events
{
/// <summary>
/// This class extends the framework version in order for developers to add on any specific methods/behavior.
/// </summary>
public class SettingsBase : Framework.SettingsBase
{
/// <summary>
/// Gets the name of the this module's desktop module record in DNN.
/// </summary>
/// <value>The name of this module's desktop module record in DNN.</value>
public override string DesktopModuleName
{
get { return Utility.DesktopModuleName; }
}
}
}