Interface IWatcherType
The system entity for a watcher type, which is a grouping for watchers
See https://help.lemonedge.com/help/settings/enterprise-tools/watcher-types/intro.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.Workflow
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.WatcherType, "dbo.LT_WatcherTypes", "WatcherType", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/settings/enterprise-tools/watcher-types/intro.html")]
[DefaultEntityIcon(ImageType.Binoculars)]
public interface IWatcherType : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Description
The description this Watcher type.
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("The description this Watcher type.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique user friendly name of this Watcher Type
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this Watcher type.")]
[Unique]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |