using System.Collections.Generic; namespace Win_in.Sfs.Scp.WebApi; public class AsnBgWorker { public bool Active { get; set; } = false; public int PeriodSeconds { get; set; } = 60; public int RetryTimes { get; set; } = 3; public int BatchSize { get; set; } = 10; public List Sites { get; set; } =new() ; public string Receiver { get; set; } = "IACNA_ID"; }