mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
16 lines
547 B
C#
16 lines
547 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!;
|
|
} |