mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
0c66607ed7
add user config queue offsets throttle improvements
15 lines
546 B
C#
15 lines
546 B
C#
namespace Azaion.CommonSecurity.DTO;
|
|
|
|
public class DirectoriesConfig
|
|
{
|
|
public string ApiResourcesDirectory { get; set; } = null!;
|
|
|
|
public string VideosDirectory { get; set; } = null!;
|
|
public string LabelsDirectory { get; set; } = null!;
|
|
public string ImagesDirectory { get; set; } = null!;
|
|
public string ResultsDirectory { get; set; } = null!;
|
|
public string ThumbnailsDirectory { get; set; } = null!;
|
|
|
|
public string GpsSatDirectory { get; set; } = null!;
|
|
public string GpsRouteDirectory { get; set; } = null!;
|
|
} |