using InABox.Core; namespace Comal.Classes { [Caption("Change Timesheet Start/Finish Times")] public class CanChangeStartFinishTimes : DisabledSecurityDescriptor { } [Caption("Approve Timesheets")] public class CanApproveTimesheets : EnabledSecurityDescriptor { } [Caption("Archive Timesheets")] public class CanArchiveTimesheets : DisabledSecurityDescriptor { } [Caption("Approve Leave Requests")] public class CanApproveLeaveRequests : EnabledSecurityDescriptor { } [Caption("Edit Org Chart Structure")] public class CanEditOrgChart : EnabledSecurityDescriptor { } [Caption("View User Passwords")] public class CanViewPasswords : DisabledSecurityDescriptor { } [Caption("Allow Timesheet Midnight Rollover")] public class AllowTimeSheetRollover : DisabledSecurityDescriptor { } [SecurityDescriptorScope(SecurityDescriptorScope.Global)] [Caption("Allow Split Shifts in Employee Rosters")] public class AllowEmployeeRosterSplitShifts : DisabledSecurityDescriptor { } [Caption("View Public Holidays On Mobile")] public class CanViewPublicHolidaysOnMobile : DisabledSecurityDescriptor { } [Caption("Send Mobile Phone Credentials")] public class CanCreateMobilePhoneCredentialLinks : DisabledSecurityDescriptor { } [Caption("View Mobile In Out Board Details")] public class CanViewMobileInOutBoardDetails : DisabledSecurityDescriptor { } [Caption("Is Job-Only Employee")] public class IsJobOnlyEmployee : DisabledSecurityDescriptor { } }