10 lines
224 B
C#
10 lines
224 B
C#
namespace PARR.AIHITMainLoader.Settings
|
|
{
|
|
internal class LoaderSettings
|
|
{
|
|
public List<string> ResponseAreas { get; set; } = new List<string>();
|
|
|
|
public int PackageSize { get; set; } = 100;
|
|
}
|
|
}
|