mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:56:29 +00:00
12 lines
305 B
C#
12 lines
305 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; } = "";
|
|
}
|