Interface IAddInModule
The system entity for addin modules, which are a collection of addins all contained within one module
See https://web.lemonedge.com/help/addin-modules/ for more information
Inherited Members
System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
System.ComponentModel.INotifyPropertyChanging.PropertyChanging
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
[EntityDefinition(EntityID.AddInModules, "dbo.LT_AddInModules", "AddInModule", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "addin-modules")]
[DefaultEntityIcon(ImageType.AddInModule)]
public interface IAddInModule : IBaseEntityWithPermissions, ISetCopier, IShareAcrossAccounts, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Description
A user friendly description of this addin module and its contents
Declaration
[EntityProperty(SQLType.NVarChar, (short)2000, true)]
[EntityDescription("A user friendly description of this modules functionality.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
[Key] A unique friendly name for this addin module.
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this AddIn Module.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.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 |
---|---|
System.Int16 |