mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 10:46:30 +00:00
consolidate CommonSecurity to Common.dll
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user