- Löschrechtprüfung an FaC angepasst. - Ziele und Maßnahmen sind alphabetisch absteigend sortiert wie im FaC. - Reports bei Klienten verbessert. - Bargeldtransaktionshistorie eingebaut.
17 lines
566 B
C#
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; }
|
|
}
|
|
}
|