mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 00:46:31 +00:00
f108cca5f5
remove login pass
12 lines
311 B
C#
12 lines
311 B
C#
namespace Azaion.CommonSecurity.DTO;
|
|
|
|
public class PythonConfig
|
|
{
|
|
public string ZeroMqHost { get; set; } = "";
|
|
public int ZeroMqPort { get; set; }
|
|
public double OneTryTimeoutSeconds { get; set; }
|
|
public int RetryCount {get;set;}
|
|
|
|
public string ResourcesFolder { get; set; } = "";
|
|
}
|