20220510_191_upperpc/AutomaticApp/Models/CourseSeriesModel.cs

20 lines
442 B
C#
Raw Permalink Normal View History

2023-07-27 02:57:34 +00:00
using LiveCharts;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomaticApp.Model
{
public class CourseSeriesModel
{
public string CourseName { get; set; }
public SeriesCollection SeriesCollection { get; set; }
public ObservableCollection<SeriesModel> SeriesList { get; set; }
}
}