aurora/aurora-sharp-desktop/Aurora/Services/Library/ILibraryService.cs

12 lines
245 B
C#
Raw Normal View History

2021-03-06 04:10:12 +00:00
using System.Collections.ObjectModel;
using Aurora.Models.Media;
namespace Aurora.Services.Library
{
public interface ILibraryService
{
ObservableCollection<BaseMedia> GetLibrary();
BaseMedia GetSong(string Id);
}
}