Interface IWatcherType
The system entity for a watcher type, which is a grouping for watchers
See https://web.lemonedge.com/help/watcher-types/ 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.WatcherType, "dbo.LT_WatcherTypes", "WatcherType", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "watcher-types")]
[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, (short)2000, true)]
[EntityDescription("The description this Watcher type.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
[Key] The unique user friendly name of this Watcher Type
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, false)]
[EntityDescription("The unique name of this Watcher type.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |