17 lines
423 B
C#
17 lines
423 B
C#
using Microsoft.AspNetCore.Components;
|
|
using MP.MONO.Core.DTO;
|
|
using MP.MONO.Data;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace MP.MONO.UI.Components
|
|
{
|
|
public partial class ParamPlot
|
|
{
|
|
//protected string selParam { get; set; } = "";
|
|
private List<DisplayDataDTO>? ListRecords { get; set; } = null;
|
|
|
|
protected List<chartJsData.chartJsTSerie> LevelVal = new List<chartJsData.chartJsTSerie>();
|
|
|
|
}
|
|
}
|