// 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 { /// /// Application Asset Url /// public string AssetUrl { get; set; } = ""; /// /// Application base url /// public string BaseUrl { get; set; } = ""; /// /// Application uri for product catalog request /// public string Catalog { get; set; } = ""; /// /// Application uri for activity request /// public string CrmActivities { get; set; } = ""; /// /// Application uri for sales report request /// public string CrmReports { get; set; } = ""; /// /// Application uri for task items request /// public string CrmTasks { get; set; } = ""; /// /// Application uri for customer information request /// public string CrmCustomers { get; set; } = ""; /// /// Office base url /// public string OfficeBase { get; set; } = ""; /// /// Office activity url /// public string OfficeActivities { get; set; } = ""; /// /// Application uri for administration of sales representatives /// public string OfficeAdvisors { get; set; } = ""; /// /// Application uri for administration of administrative users /// public string OfficeUsers { get; set; } = ""; /// /// office uri for customer requests /// public string OfficeCustomers { get; set; } = ""; /// /// office uri for reports /// public string OfficeReports { get; set; } = ""; /// /// Endpoint for Office Sales actions /// public string OfficeSales { get; set; } = ""; /// /// Public Product url /// public string PublicProducts { get; set; } = ""; /// /// Application uri for token request /// public string ServiceAuth { get; set; } = ""; /// /// GLS tracking url /// public string ServiceGlsTrack { get; set; } = ""; /// /// GLS customer entity /// public string ServiceGlsId { get; set; } = ""; /// /// url for sending mail message /// public string ServiceMail { get; set; } = ""; /// /// url for sending Short Message /// public string ServiceSms { get; set; } = ""; /// /// VAT registrar url Denmark /// public string ServiceVatDk { get; set; } = ""; /// /// VAT registrar url Norway /// public string ServiceVatNo { get; set; } = ""; /// /// VAT registrar url EU /// public string ServiceVatSe { get; set; } = ""; /// /// VAT registrar url EU /// public string ServiceVatEu { get; set; } = ""; /// /// Base sync url /// public string Sync { get; set; } = ""; /// /// Application uri for updating customer product sale request /// public string SyncInvoice { get; set; } = ""; /// /// Generic system string endpoint /// public string SystemDocStringUrl { get; set; } = ""; /// /// Get system document labels for translation /// public string SystemLabels { get; set; } = ""; /// /// Get system document texts for translation /// public string SystemTexts { get; set; } = ""; /// /// Application uri for user information request /// public string UserInfoClient { get; set; } = ""; /// /// Application uri for user information request /// public string UserInfoAuth { get; set; } = ""; /// /// Application uri for user management /// public string UserManager { get; set; } = ""; /// /// Application uri for administrative reset of user credentials /// public string UserManagerSetPasswd { get; set; } = ""; /// /// Application uri for user roles /// public string UserRoles { get; set; } = ""; /// /// Endpoint for user evaluations /// public string UserSupport { get; set; } = ""; /// /// Uri for warehouse requests /// public string OrderProcess { get; set; } = ""; /// /// Uri for B2BCustomer /// public string B2BCustomer { get; set; } = ""; }