@model economy.Models.View @{ ViewData["Title"] = "천연가스 시세"; }

@ViewData["Title"]

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