Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

Commit

Permalink
MarketInstrumentRespone Total type fixed (from decimal to int)
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarovsa committed Oct 16, 2019
1 parent 0238396 commit 6d941af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Insight.Tinkoff.Invest.Dto.Payloads
{
public sealed class MarketInstrumentResponsePayload
{
public decimal Total { get; set; }
public int Total { get; set; }

public List<MarketInstrument> Instruments { get; set; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Insight.Tinkoff.Invest.Dto.Responses
{
public sealed class MarketInstrumentListResponse : ResponseBase
{
public decimal Total { get; }
public int Total { get; }

public IReadOnlyCollection<MarketInstrument> Instruments { get; }

Expand Down
2 changes: 1 addition & 1 deletion Insight.Tinkoff.Invest/Insight.Tinkoff.Invest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageProjectUrl>https://github.com/InsightAppDev/TinkoffInvestNetSdk/</PackageProjectUrl>
<RepositoryUrl>https://github.com/InsightAppDev/TinkoffInvestNetSdk/</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageVersion>1.0.0</PackageVersion>
<PackageVersion>1.0.1</PackageVersion>
<TargetFrameworks>netstandard2.0;netcoreapp2.2</TargetFrameworks>
<PackageId>Insight.Tinkoff.InvestSdk</PackageId>
</PropertyGroup>
Expand Down

0 comments on commit 6d941af

Please sign in to comment.