Files
annotations/Azaion.CommonSecurity/DTO/PythonConfig.cs
T
2025-02-16 16:35:52 +02:00

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; } = "";
}