Wonky.Client/Wonky.Entity/Configuration/ApiConfig.cs
2023-04-11 15:50:24 +02:00

183 lines
No EOL
5.1 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 base url
/// </summary>
public string BaseUrl { get; set; } = "";
/// <summary>
/// Application uri for product catalog request
/// </summary>
public string Catalog { 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>
/// Application uri for customer product inventory request
/// </summary>
public string CrmInventoryExt { get; set; } = "";
/// <summary>
/// Application uri for customer product sale request
/// </summary>
public string CrmProductExt { get; set; } = "";
/// <summary>
/// Application uri for getting workplace(s)
/// </summary>
public string CrmWorkplaceExt { get; set; } = "";
/// <summary>
/// Office base url
/// </summary>
public string OfficeBase { 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>
/// Application uri for token request
/// </summary>
public string ServicesAuth { get; set; } = "";
/// <summary>
/// GLS tracking url
/// </summary>
public string ServicesGlsTrackUrl { get; set; } = "";
/// <summary>
/// GLS customer entity
/// </summary>
public string ServicesGlsId { get; set; } = "";
/// <summary>
/// url for sending mail message
/// </summary>
public string ServicesMail { get; set; } = "";
/// <summary>
/// url for sending Short Message
/// </summary>
public string ServicesSms { get; set; } = "";
/// <summary>
/// VAT registrar url Denmark
/// </summary>
public string ServicesVatDk { get; set; } = "";
/// <summary>
/// VAT registrar url Norway
/// </summary>
public string ServicesVatNo { get; set; } = "";
/// <summary>
/// VAT registrar url EU
/// </summary>
public string ServicesVatEu { get; set; } = "";
/// <summary>
/// Base sync url
/// </summary>
public string SyncRpc { get; set; } = "";
/// <summary>
/// Application uri for updating customer product sale request
/// </summary>
public string SyncRpcInvoiceExt { 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 UserData { get; set; } = "";
/// <summary>
/// Application uri for user information request
/// </summary>
public string UserInfo { 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>
/// Uri for warehouse requests
/// </summary>
public string Warehouse { get; set; } = "";
}