mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
9 lines
358 B
C#
9 lines
358 B
C#
namespace Azaion.Common.DTO;
|
|
|
|
public class InitConfig
|
|
{
|
|
public LoaderClientConfig LoaderClientConfig { get; set; } = null!;
|
|
public InferenceClientConfig InferenceClientConfig { get; set; } = null!;
|
|
public GpsDeniedClientConfig GpsDeniedClientConfig { get; set; } = null!;
|
|
public DirectoriesConfig DirectoriesConfig { get; set; } = null!;
|
|
} |