// Copyright (C) 2022 FCS Frede's Computer Services. // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html] // namespace Wonky.Entity.Configuration; public class ApiConfig { // external service public string GlsTrackUrl { get; set; } = ""; public string GlsId { get; set; } = ""; public string VirkUrl { get; set; } = ""; public string BrRegUrl { get; set; } = ""; public string ViesUrl { get; set; } = ""; // api service public string InnoBaseUrl { get; set; } = ""; public string CompanyUri { get; set; } = ""; public string CatalogUri { get; set; } = ""; public string UserInfoUri { get; set; } = ""; public string TokenUri { get; set; } = ""; public string ActivityUri { get; set; } = ""; public string ReportUri { get; set; } = ""; public string TaskUri { get; set; } = ""; public string InventoryUri { get; set; } = ""; public string ProductUri { get; set; } = ""; public string SyncUri { get; set; } = ""; public string AdminAdviserUri { get; set; } = ""; public string AdminPasswdUri { get; set; } = ""; // public string KrvVariantsUri { get; set; } = ""; // public string KrvProductsUri { get; set; } = ""; // public string ImageUploadUri { get; set; } = ""; // public string UserRegistrationUri { get; set; } = ""; }