Added playlist repository logic.

This commit is contained in:
2025-02-18 20:49:04 -05:00
parent 8cf4bb2804
commit 2bafd474a0
7 changed files with 182 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
namespace Harmonia.Core.Data;
public interface IRepository<TObject>
{
List<TObject> Get();
void Save(TObject value);
void Delete(TObject value);
}