PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/ViewModels/GraphicViewModel.cs

20 lines
408 B
C#
Raw Permalink Normal View History

2023-05-17 17:59:48 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.ViewModels
{
public class GraphicViewModel
{
public string ColumnName { get; set; }
public string ValueName { get; set; }
public string Title { get; set; }
public List<Tuple<string, double>> Data { get; set; }
}
}