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