26 lines
592 B
C#
26 lines
592 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FSI.BT.Tools.Settings
|
|
{
|
|
public class Urls
|
|
{
|
|
public interface IUrls
|
|
{
|
|
string ZentralWeb { get; }
|
|
string Schichtbuch { get; }
|
|
string SPS { get; }
|
|
string Pl1Pls { get; }
|
|
string Pl2Pls { get; }
|
|
string Pl2Als { get; }
|
|
string Pl3Pls { get; }
|
|
string Gitea { get; }
|
|
string Wiki { get; }
|
|
string Erp { get; }
|
|
}
|
|
}
|
|
}
|