mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
438 B
20 lines
438 B
using Prism.Commands;
|
|
using Prism.Events;
|
|
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace DownKyi.ViewModels.DownloadManager
|
|
{
|
|
public class ViewDownloadingViewModel : BaseViewModel
|
|
{
|
|
public const string Tag = "PageDownloadManagerDownloading";
|
|
|
|
public ViewDownloadingViewModel(IEventAggregator eventAggregator) : base(eventAggregator)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|