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