@model economy.Models.View @{ bool hasKrw = (ViewBag.HasKrw == true); }

@ViewData["Title"]

@((Model?.Response?.Data?.Count ?? 0).ToString("N0")) 개
@if (hasKrw) { } else { } @if (Model.Response.Data != null && Model.Response.Data?.Count > 0) { @foreach (var row in Model.Response.Data) { @if (hasKrw) { } } } else { }
단위: @Model.Response.Unit
번호 날짜달러($) 원화(\)지수
@row.Num @row.Date @row.Value@row.KRW.ToString("N0")
No data.
@await Html.PartialAsync("~/Views/Component/Pagination.cshtml", Model.Pagination)
@section Scripts { } @section Styles { }