mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-08 08:45:54 +00:00
11 lines
329 B
C#
11 lines
329 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using PodNoms.Api.Models;
|
|
|
|
namespace PodNoms.Api.Persistence {
|
|
public interface IPlaylistRepository {
|
|
Task<Playlist> GetAsync(int id);
|
|
Task<IEnumerable<Playlist>> GetAllAsync();
|
|
Task<Playlist> AddOrUpdateAsync(Playlist playlist);
|
|
}
|
|
} |