Wonky.Client/Wonky.Entity/Configuration/ApiConfig.cs

120 lines
3.6 KiB
C#
Raw Normal View History

2022-03-11 14:21:04 +01:00
// Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify
2022-05-31 19:07:39 +02:00
// it under the terms of the GNU Affero General Public License as
2022-03-11 14:21:04 +01:00
// 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
2022-05-31 19:07:39 +02:00
// GNU Affero General Public License for more details.
2022-03-11 14:21:04 +01:00
//
2022-05-31 19:07:39 +02:00
// You should have received a copy of the GNU Affero General Public License
2022-03-11 14:21:04 +01:00
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
//
namespace Wonky.Entity.Configuration;
2022-03-11 14:21:04 +01:00
public class ApiConfig
2022-03-11 14:21:04 +01:00
{
2022-07-01 10:02:29 +02:00
/// <summary>
/// GLS tracking url
/// </summary>
2022-04-03 11:50:33 +02:00
public string GlsTrackUrl { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// GLS customer entity
/// </summary>
2022-04-03 11:50:33 +02:00
public string GlsId { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// VAT registrar url Denmark
/// </summary>
2022-06-25 15:32:36 +02:00
public string VirkUrl { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// VAT registrar url Norway
/// </summary>
2022-06-25 15:32:36 +02:00
public string BrRegUrl { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// VAT registrar url EU
/// </summary>
2022-06-25 15:32:36 +02:00
public string ViesUrl { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application base url
/// </summary>
2022-06-25 15:59:12 +02:00
public string InnoBaseUrl { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for company information request
/// </summary>
2022-06-25 15:32:36 +02:00
public string CompanyUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for product catalog request
/// </summary>
2022-06-25 15:32:36 +02:00
public string CatalogUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for user information request
/// </summary>
2022-06-25 15:32:36 +02:00
public string UserInfoUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for token request
/// </summary>
2022-06-25 15:32:36 +02:00
public string TokenUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for activity request
/// </summary>
2022-06-25 15:32:36 +02:00
public string ActivityUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for sales report request
/// </summary>
2022-06-25 15:32:36 +02:00
public string ReportUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for task items request
/// </summary>
2022-06-25 15:32:36 +02:00
public string TaskUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for customer product inventory request
/// </summary>
2022-06-24 12:36:32 +02:00
public string InventoryUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for customer product sale request
/// </summary>
2022-06-24 12:36:32 +02:00
public string ProductUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for updating customer product sale request
/// </summary>
2022-06-25 15:32:36 +02:00
public string SyncUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for administration of sales representatives
/// </summary>
2022-06-26 18:22:38 +02:00
public string AdminAdviserUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for administration of administrative users
/// </summary>
2022-06-29 09:15:57 +02:00
public string AdminUserUri { get; set; } = "";
2022-07-01 10:02:29 +02:00
/// <summary>
/// Application uri for administrative reset of user credentials
/// </summary>
2022-06-26 18:22:38 +02:00
public string AdminPasswdUri { get; set; } = "";
2022-06-26 11:38:47 +02:00
2022-07-01 10:02:29 +02:00
2022-06-25 15:32:36 +02:00
// public string KrvVariantsUri { get; set; } = "";
// public string KrvProductsUri { get; set; } = "";
// public string ImageUploadUri { get; set; } = "";
// public string UserRegistrationUri { get; set; } = "";
2022-06-26 11:38:47 +02:00
2022-03-11 14:21:04 +01:00
}