// 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 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; } = ""; /// /// Application uri for customer product inventory request /// public string CrmInventoryExt { get; set; } = ""; /// /// Application uri for customer product sale request /// public string CrmProductExt { get; set; } = ""; /// /// Application uri for getting workplace(s) /// public string CrmWorkplaceExt { 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; } = ""; /// /// Public Product url /// public string PublicProducts { get; set; } = ""; /// /// Application uri for token request /// public string ServicesAuth { get; set; } = ""; /// /// GLS tracking url /// public string ServicesGlsTrackUrl { get; set; } = ""; /// /// GLS customer entity /// public string ServicesGlsId { get; set; } = ""; /// /// url for sending mail message /// public string ServicesMail { get; set; } = ""; /// /// url for sending Short Message /// public string ServicesSms { get; set; } = ""; /// /// VAT registrar url Denmark /// public string ServicesVatDk { get; set; } = ""; /// /// VAT registrar url Norway /// public string ServicesVatNo { get; set; } = ""; /// /// VAT registrar url EU /// public string ServicesVatEu { 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 Warehouse { get; set; } = ""; }