// 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 InnoBaseUrl { get; set; } = ""; /// /// GLS tracking url /// public string GlsTrackUrl { get; set; } = ""; /// /// GLS customer entity /// public string GlsId { get; set; } = ""; /// /// VAT registrar url Denmark /// public string ServiceVirk { get; set; } = ""; /// /// VAT registrar url Norway /// public string ServiceBrReg { get; set; } = ""; /// /// VAT registrar url EU /// public string ServiceVies { get; set; } = ""; /// /// Application uri for token request /// public string Token { get; set; } = ""; /// /// Application uri for user information request /// public string UserInfo { get; set; } = ""; /// /// Application uri for product catalog request /// public string Catalog { get; set; } = ""; /// /// Application uri for activity request /// public string CrmSales { 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 CrmInventory { get; set; } = ""; /// /// Application uri for customer product sale request /// public string CrmProducts { get; set; } = ""; /// /// Application uri for updating customer product sale request /// public string CrmSync { get; set; } = ""; /// /// Application uri for getting workplace(s) /// public string CrmWorkplaces { 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; } = ""; /// /// Application uri for administrative reset of user credentials /// public string OfficeUserPasswd { get; set; } = ""; /// /// office uri for customer requests /// public string OfficeCustomers { get; set; } = ""; /// /// office uri for reports /// public string OfficeReports { get; set; } = ""; /// /// Uri for warehouse requests /// public string Warehouse { get; set; } = ""; // /// // /// Application uri for reading salesReports // /// // public string AdminReport { get; set; } = ""; // // /// // /// Application uri for handling external customer login // /// // public string AdminCompany { get; set; } = ""; // public string KrvVariantsUri { get; set; } = ""; // public string KrvProductsUri { get; set; } = ""; // public string ImageUploadUri { get; set; } = ""; // public string UserRegistrationUri { get; set; } = ""; }