summaryrefslogtreecommitdiff
path: root/Decompiler/Gestor.Application.Model/Grafico.cs
blob: 8e8f1aa6c4d7ef027e5ec69bb2fd2ce5794a3256 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;
using LiveCharts;

namespace Gestor.Application.Model;

public class Grafico
{
	public SeriesCollection Series { get; set; }

	public Func<double, string> Formatter { get; set; }
}