Interface IExchangeRateCategory
The system entity for exchange rate categories
See https://help.lemonedge.com/help/financial-services-engine/trade/exchange-rates/intro.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.FinancialServices.Products.FX
Assembly: LemonEdge.API.Entities.FinancialServices.dll
Syntax
[EntityDefinition(EntityID.ExchangeRateCategory, "dbo.LT_ExchangeRateCategories", "ExchangeRateCategory", IsStandingDataEntity = false, HelpURL = "help/financial-services-engine/trade/exchange-rates/intro.html", LabelColumn = "Name")]
[DefaultEntityIcon(ImageType.ExchangeRates)]
public interface IExchangeRateCategory : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Description
The user friendly description of this exchange rate category
Declaration
[EntityProperty(SQLType.NVarChar, 2500, true)]
[EntityDescription("The user friendly description of this exchange rate category.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique name of this exchange rate category
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityDescription("The unique name of this exchange rate category.")]
[Required]
[EntityKeyProperty]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |