mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:46:30 +00:00
b21f8e320f
add tensorrt engine
19 lines
500 B
C#
19 lines
500 B
C#
namespace Azaion.CommonSecurity.DTO;
|
|
|
|
public abstract class ExternalClientConfig
|
|
{
|
|
public string ZeroMqHost { get; set; } = "";
|
|
public int ZeroMqPort { get; set; }
|
|
public double OneTryTimeoutSeconds { get; set; }
|
|
public int RetryCount {get;set;}
|
|
}
|
|
|
|
public class InferenceClientConfig : ExternalClientConfig
|
|
{
|
|
public string ResourcesFolder { get; set; } = "";
|
|
}
|
|
|
|
public class GpsDeniedClientConfig : ExternalClientConfig
|
|
{
|
|
public int ZeroMqReceiverPort { get; set; }
|
|
} |