mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-08 00:37:31 +00:00
11 lines
329 B
C#
Executable File
11 lines
329 B
C#
Executable File
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);
|
|
}
|
|
} |