add quartz for jobs

configure auto-scan folder and create hls files job WIP
This commit is contained in:
Oleksandr Bezdieniezhnykh
2024-07-26 14:11:29 +03:00
parent 5e55210eac
commit 7807f5bc90
18 changed files with 179 additions and 28 deletions
@@ -0,0 +1,6 @@
namespace Azaion.Repository.DTO.Configs;
public class ConnectionStrings
{
public string? AzaionDb { get; set; }
}
@@ -0,0 +1,8 @@
namespace Azaion.Repository.DTO.Configs;
public class FoldersConfig
{
public string VideosFolder { get; set; } = null!;
public string HlsFolder { get; set; } = null!;
public string FfmpegExecutable { get; set; } = null!;
}
@@ -1,7 +0,0 @@
namespace Azaion.Repository.DTO;
public class ConnectionStrings
{
public string? FraudDb { get; set; }
public string? FraudDbMsSql { get; set; }
}