* cleanup scanner project * cleanup infrastructure projects * cleanup ffmpeg project * cleanup core project * cleanup app project * cleanup main project * update dependencies * code cleanup
9 lines
222 B
C#
9 lines
222 B
C#
namespace ErsatzTV.Core.Interfaces.MediaSources;
|
|
|
|
public interface IRemoteMediaSourceSecretStore<TSecrets>
|
|
{
|
|
Task<Unit> DeleteAll();
|
|
Task<TSecrets> ReadSecrets();
|
|
Task<Unit> SaveSecrets(TSecrets secrets);
|
|
}
|