2025-10-28 12:56:42 -03:00
|
|
|
// backend/src/Titulares.Api/Models/ConfiguracionApp.cs
|
|
|
|
|
|
|
|
|
|
namespace Titulares.Api.Models;
|
|
|
|
|
|
|
|
|
|
public class ConfiguracionApp
|
|
|
|
|
{
|
|
|
|
|
public string RutaCsv { get; set; } = "C:\\temp\\titulares.csv";
|
|
|
|
|
public int IntervaloMinutos { get; set; } = 5;
|
|
|
|
|
public int CantidadTitularesAScrapear { get; set; } = 20;
|
2025-10-29 11:36:20 -03:00
|
|
|
public bool ScrapingActivo { get; set; } = false;
|
|
|
|
|
public string ViñetaPorDefecto { get; set; } = "•";
|
2025-10-28 12:56:42 -03:00
|
|
|
}
|