Wonky.Client/Wonky.Entity/Configuration/ApiConfig.cs
2023-11-02 18:25:58 +01:00

207 lines
No EOL
5.7 KiB
C#

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