Interface IAddInModule
The system entity for addin modules, which are a collection of addins all contained within one module
See https://help.lemonedge.com/help/api/code/addin-modules/intro.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.Design
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.AddInModules, "dbo.LT_AddInModules", "AddInModule", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/api/code/addin-modules/intro.html")]
[DefaultEntityIcon(ImageType.AddInModule)]
public interface IAddInModule : IBaseEntityWithPermissions, ISetCopier, IShareAcrossAccounts, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
BaseHelpURL
A custom base url for help on any addin in this module. Can be overidden at the addin level
Declaration
[EntityProperty(SQLType.NVarChar, 500, true)]
string BaseHelpURL { get; set; }
Property Value
Type | Description |
---|---|
string |
Description
A user friendly description of this addin module and its contents
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of this modules functionality.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] A unique friendly name for this addin module.
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this AddIn Module.")]
[Unique]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Sequence
The sequence this AddIn Module is loaded in to the system relative to other addin modules.
Declaration
[EntityProperty(SQLType.SmallInt, false, "0")]
[EntityDescription("Holds the order of this module, that it is loaded in the system, so dependant modules can be loaded first.")]
[EntitySequence]
short Sequence { get; set; }
Property Value
Type | Description |
---|---|
short |