This repository has been archived on 2020-12-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
aurora-sharp-desktop/Aurora/Services/Library/ILibraryService.cs

12 lines
245 B
C#

using System.Collections.ObjectModel;
using Aurora.Models.Media;
namespace Aurora.Services.Library
{
public interface ILibraryService
{
ObservableCollection<BaseMedia> GetLibrary();
BaseMedia GetSong(string Id);
}
}