mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
22 lines
501 B
C#
22 lines
501 B
C#
namespace Azaion.Common.DTO;
|
|
|
|
public abstract class ExternalClientConfig
|
|
{
|
|
public string ZeroMqHost { get; set; } = "";
|
|
public int ZeroMqPort { get; set; }
|
|
}
|
|
|
|
public class LoaderClientConfig : ExternalClientConfig
|
|
{
|
|
public string ApiUrl { get; set; } = null!;
|
|
}
|
|
|
|
public class InferenceClientConfig : ExternalClientConfig
|
|
{
|
|
public string ApiUrl { get; set; } = null!;
|
|
}
|
|
|
|
public class GpsDeniedClientConfig : ExternalClientConfig
|
|
{
|
|
public int ZeroMqReceiverPort { get; set; }
|
|
} |