| 123456789101112131415161718192021222324 | using InABox.Core;namespace Comal.Classes{    [Caption("View Daily Reports Screen")]    public class CanViewDailyReports : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>    {    }    [Caption("Use PRS even if outstanding Daily Reports exist")]    public class BypassOutstandingDailyReports : EnabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>    {    }    [Caption("Require Activity Codes on all Daily Reports")]    public class RequireActivityCodesOnDailyReports : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>    {    }        [Caption("Can Track Tasks in Daily Reports")]    public class CanTrackTasksInDailyReport : DisabledSecurityDescriptor<HumanResourcesLicense, TimeSheet, Assignment>    {    }    }
 |