namespace ListmonkIntegration.Models { public class ListmonkSettings { public string BaseUrl { get; set; } = "http://localhost:9000"; public string Username { get; set; } = "listmonk"; public string Password { get; set; } = "listmonk"; public string? ApiToken { get; set; } } }