yavsc/yavscModel/IModule.cs

17 lines
379 B
C#
Raw Normal View History

using System;
using System.Configuration;
using System.Collections.Specialized;
2014-10-06 04:58:47 +02:00
namespace Yavsc.Model
{
public interface IModule
{
void Install();
void Uninstall();
ConfigurationSection DefaultConfig (string appName, string cnxStr);
bool Active { get; set; }
string ApplicationName { get; set; }
void Initialize (string name, NameValueCollection config);
}
}