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