aurora/aurora-sharp-desktop/Aurora/Services/Library/ILibraryService.cs
2021-03-05 23:10:12 -05:00

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);
}
}