mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-24 00:00:12 +08:00
13 lines
360 B
C#
13 lines
360 B
C#
using DownKyi.ViewModels.PageViewModels;
|
|
using Prism.Events;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace DownKyi.Services
|
|
{
|
|
public interface IFavoritesService
|
|
{
|
|
Favorites GetFavorites(long mediaId);
|
|
void GetFavoritesMediaList(long mediaId, ObservableCollection<FavoritesMedia> result, IEventAggregator eventAggregator);
|
|
}
|
|
}
|