// 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 { /// /// GLS tracking url /// public string GlsTrackUrl { get; set; } = ""; /// /// GLS customer entity /// public string GlsId { get; set; } = ""; /// /// VAT registrar url Denmark /// public string VirkUrl { get; set; } = ""; /// /// VAT registrar url Norway /// public string BrRegUrl { get; set; } = ""; /// /// VAT registrar url EU /// public string ViesUrl { get; set; } = ""; /// /// Application base url /// public string InnoBaseUrl { get; set; } = ""; /// /// Application uri for company information request /// public string CompanyUri { get; set; } = ""; /// /// Application uri for product catalog request /// public string CatalogUri { get; set; } = ""; /// /// Application uri for user information request /// public string UserInfoUri { get; set; } = ""; /// /// Application uri for token request /// public string TokenUri { get; set; } = ""; /// /// Application uri for activity request /// public string ActivityUri { get; set; } = ""; /// /// Application uri for sales report request /// public string ReportUri { get; set; } = ""; /// /// Application uri for task items request /// public string TaskUri { get; set; } = ""; /// /// Application uri for customer product inventory request /// public string InventoryUri { get; set; } = ""; /// /// Application uri for customer product sale request /// public string ProductUri { get; set; } = ""; /// /// Application uri for updating customer product sale request /// public string SyncUri { get; set; } = ""; /// /// Application uri for administration of sales representatives /// public string AdminAdviserUri { get; set; } = ""; /// /// Application uri for administration of administrative users /// public string AdminUserUri { get; set; } = ""; /// /// Application uri for administrative reset of user credentials /// 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; } = ""; }