15 lines
469 B
C#
15 lines
469 B
C#
using BS.Shared.Core;
|
|
|
|
namespace BeWoPlanerMobil.Util
|
|
{
|
|
public class MokSettings
|
|
{
|
|
public int SupportConceptExpirationLimitInMonths { get; set; }
|
|
public int AnzTageZeiterfassErfolgt { get; set; }
|
|
public int AnzTageUnterschriftErfolgt { get; set; }
|
|
public int MaxDaysEditServiceRecordsAllowed { get; set; }
|
|
public int ServiceRecordAllowChangeHours { get; set; }
|
|
public int TimeUntilUILock { get; set; }
|
|
}
|
|
}
|