Interface IArticle
The system entity for an Article, which allows for storing arbitrary rich text against any entities in the system
See https://help.lemonedge.com/documents/ for more information
Inherited Members
Namespace: LemonEdge.API.Entities.Workflow
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.Article, "dbo.LT_Articles", "Article", IsStandingDataEntity = false, LabelColumn = "Name")]
[DefaultEntityIcon(ImageType.News)]
public interface IArticle : IAttachableBase, IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, IHasVersion
Properties
ArticleType
Declaration
[Required]
[EntityDescription("The article type.")]
[EntityProperty(SQLType.SmallInt, false, "0")]
ArticleType ArticleType { get; set; }
Property Value
Type | Description |
---|---|
ArticleType |
DocumentLink
The actual document - optional, as can store the file itself
Declaration
[EntityProperty(SQLType.NVarChar, 1024, true)]
[EntityDescription("An optional link to an article, file or url.")]
string DocumentLink { get; set; }
Property Value
Type | Description |
---|---|
string |
ImageData
Optional image data.
Declaration
[EntityDescription("Optional image data")]
[EntityProperty(SQLType.VarBinary, true)]
byte[] ImageData { get; set; }
Property Value
Type | Description |
---|---|
byte[] |
ImageLink
The actual document - optional, as can store the file itself
Declaration
[EntityProperty(SQLType.NVarChar, 1024, true)]
[EntityDescription("An optional link to an article, file or url.")]
string ImageLink { get; set; }
Property Value
Type | Description |
---|---|
string |