20220510_191_upperpc/AutomaticApp/Models/CourseSeriesModel.cs
2023-07-27 10:57:34 +08:00

20 lines
442 B
C#

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; }
}
}