Files
BeWoPlaner/Shared/Settings/ApplicationSettings.cs

15 lines
493 B
C#
Raw Normal View History

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; }
public static int AnzTageZeiterfassErfolgt { get; set; }
public static int MaxDaysEditServiceRecordsAllowed { get; set; }
2016-06-27 01:45:38 +02:00
public virtual string RssFeedUrl => null;
public static int TimeUntilUILock { get; set; }
}
2016-06-27 01:45:38 +02:00
}