2019-08-08 14:47:53 +02:00
|
|
|
|
using BS.Shared.Core;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
|
|
|
|
|
namespace BS.Shared.Settings
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ApplicationSettings : AbstractIDSpecificDefaultClass<ApplicationSettings>
|
|
|
|
|
|
{
|
|
|
|
|
|
public static int SupportConceptExpirationLimitInMonths { get; set; }
|
2019-08-08 14:47:53 +02:00
|
|
|
|
public static int AnzTageZeiterfassErfolgt { get; set; }
|
|
|
|
|
|
public static int MaxDaysEditServiceRecordsAllowed { get; set; }
|
2016-06-27 01:45:38 +02:00
|
|
|
|
|
2019-08-08 14:47:53 +02:00
|
|
|
|
public virtual string RssFeedUrl => null;
|
2020-05-27 18:15:54 +02:00
|
|
|
|
public static int TimeUntilUILock { get; set; }
|
2019-08-08 14:47:53 +02:00
|
|
|
|
}
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|