Files
BeWoPlaner/Shared/Settings/ApplicationSettings.cs
Lyndon Jetten 1df62f4183 MoK:
- Löschrechtprüfung an FaC angepasst.
- Ziele und Maßnahmen sind alphabetisch absteigend sortiert wie im FaC.
- Reports bei Klienten verbessert.
- Bargeldtransaktionshistorie eingebaut.
2024-02-20 14:42:04 +01:00

17 lines
566 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 static int ServiceRecordAllowChangeHours { get; set; }
public virtual string RssFeedUrl => null;
public static int TimeUntilUILock { get; set; }
}
}