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

35 lines
1.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
{
public string BaseAddress { get; set; } = "";
2022-05-15 18:27:54 +02:00
public string CustomerEndpoint { get; set; } = "";
public string CatalogEndpoint { get; set; } = "";
2022-05-15 18:56:38 +02:00
public string KrvVariants { get; set; } = "";
public string KrvProducts { get; set; } = "";
public string ImageUpload { get; set; } = "";
public string UserRegistration { get; set; } = "";
public string UserInfo { get; set; } = "";
2022-06-10 13:26:48 +02:00
public string VirkEndpoint { get; set; } = "";
2022-06-08 18:52:00 +02:00
public string BrRegEndpoint { get; set; } = "";
public string ViesEndpoint { get; set; } = "";
public string TokenPath { get; set; } = "";
2022-04-03 11:50:33 +02:00
public string GlsTrackUrl { get; set; } = "";
public string GlsId { get; set; } = "";
2022-05-15 18:27:54 +02:00
public string ActivityEndpoint { get; set; } = "";
2022-06-10 13:26:48 +02:00
public string ReportEndpoint { get; set; } = "";
2022-03-11 14:21:04 +01:00
}