Interface ICoverageType
The system entity for coverage types
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Products
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.CoverageType, "dbo.LT_CoverageTypes", "CoverageType", IsStandingDataEntity = false, LabelColumn = "Name")]
[DefaultEntityIcon(ImageType.CoverageType)]
public interface ICoverageType : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Description
The user friendly description of this coverage type
Declaration
[EntityProperty(SQLType.NVarChar, 2500, true)]
[EntityDescription("The user friendly description of this coverage type.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique name of coverage type
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityDescription("The unique name of this coverage type.")]
[Required]
[EntityKeyProperty]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |