using DownKyi.Models; using System.Collections.ObjectModel; namespace DownKyi.Services.Download { public class DownloadService { protected string Tag = "DownloadService"; protected ObservableCollection downloadingList; protected ObservableCollection downloadedList; /// /// 初始化 /// /// /// public DownloadService(ObservableCollection downloadingList, ObservableCollection downloadedList) { this.downloadingList = downloadingList; this.downloadedList = downloadedList; } } }