using OxyPlot; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShakerApp.Models { internal class PlotConfigParameter { public PlotConfigParameter(object? sender, PlotModel? plotModel) { Sender = sender; PlotModel = plotModel; } public object? Sender { get; } public PlotModel? PlotModel { get; } } }