Wonky.Client/Wonky.Entity/Configuration/ApiConfig.cs
Frede Hundewadt dd9f9136d8 wip v0.24
2022-09-28 19:18:20 +02:00

153 lines
No EOL
4.5 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 InnoBaseUrl { get; set; } = "";
/// <summary>
/// GLS tracking url
/// </summary>
public string GlsTrackUrl { get; set; } = "";
/// <summary>
/// GLS customer entity
/// </summary>
public string GlsId { get; set; } = "";
/// <summary>
/// VAT registrar url Denmark
/// </summary>
public string ServiceVirk { get; set; } = "";
/// <summary>
/// VAT registrar url Norway
/// </summary>
public string ServiceBrReg { get; set; } = "";
/// <summary>
/// VAT registrar url EU
/// </summary>
public string ServiceVies { get; set; } = "";
/// <summary>
/// Application uri for token request
/// </summary>
public string Token { get; set; } = "";
/// <summary>
/// Application uri for user information request
/// </summary>
public string UserInfo { get; set; } = "";
/// <summary>
/// Application uri for product catalog request
/// </summary>
public string Catalog { get; set; } = "";
/// <summary>
/// Application uri for activity request
/// </summary>
public string CrmSales { 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 CrmInventory { get; set; } = "";
/// <summary>
/// Application uri for customer product sale request
/// </summary>
public string CrmProducts { get; set; } = "";
/// <summary>
/// Application uri for updating customer product sale request
/// </summary>
public string CrmSync { get; set; } = "";
/// <summary>
/// Application uri for getting workplace(s)
/// </summary>
public string CrmWorkplaces { 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>
/// Application uri for administrative reset of user credentials
/// </summary>
public string OfficeUserPasswd { 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>
/// Uri for warehouse requests
/// </summary>
public string Warehouse { get; set; } = "";
/// <summary>
/// url for sending mail message
/// </summary>
public string SendMail { get; set; } = "";
// /// <summary>
// /// Application uri for reading salesReports
// /// </summary>
// public string AdminReport { get; set; } = "";
//
// /// <summary>
// /// Application uri for handling external customer login
// /// </summary>
// 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; } = "";
}