15 lines
493 B
C#
15 lines
493 B
C#
using BS.Shared.Core;
|
|
|
|
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; }
|
|
|
|
public virtual string RssFeedUrl => null;
|
|
public static int TimeUntilUILock { get; set; }
|
|
}
|
|
}
|