12 lines
408 B
C#
12 lines
408 B
C#
// 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;
|
|
public bool ScrapingActivo { get; set; } = false;
|
|
public string ViñetaPorDefecto { get; set; } = "•";
|
|
} |