2
0
forked from sim0n00ps/OF-DL

Delete unused classes

This commit is contained in:
whimsical-c4lic0 2026-02-09 23:56:25 -06:00
parent 974b0d4d7a
commit ed06a5e514
2 changed files with 0 additions and 34 deletions

View File

@ -1,25 +0,0 @@
using OF_DL.Models;
using OF_DL.Services;
namespace OF_DL.Helpers;
internal interface IDownloadContext
{
public IFileNameFormatConfig FileNameFormatConfig { get; }
public IAPIService ApiService { get; }
public IDBService DBService { get; }
public IDownloadService DownloadService { get; }
}
internal class DownloadContext(
IFileNameFormatConfig fileNameFormatConfig,
IAPIService apiService,
IDBService dBService,
IDownloadService downloadService)
: IDownloadContext
{
public IAPIService ApiService { get; } = apiService;
public IDBService DBService { get; } = dBService;
public IDownloadService DownloadService { get; } = downloadService;
public IFileNameFormatConfig FileNameFormatConfig { get; } = fileNameFormatConfig;
}

View File

@ -1,9 +0,0 @@
namespace OF_DL.Helpers;
public interface IFileNameHelper
{
Task<string> BuildFilename(string fileFormat, Dictionary<string, string> values);
Task<Dictionary<string, string>> GetFilename(object obj1, object obj2, object obj3, List<string> selectedProperties,
string username, Dictionary<string, long>? users);
}