Hello,
I am creating a new Resource class to track scheduling information over a two-week period. This two week time period can be broken up into smaller time periods. So, I need to keep track of the start and end dates of these smaller time periods, plus some additional information specific to each period.
For example:
August 28 - August 30
Work Allocation - 100%
Type - Vacation
August 31 - September 1
Work Allocation - 75%
Type - Work
How would this be best implemented within my Resource class? I'm not sure in what type of data structure to store this (potentially) repeated information.
Thx.
I am creating a new Resource class to track scheduling information over a two-week period. This two week time period can be broken up into smaller time periods. So, I need to keep track of the start and end dates of these smaller time periods, plus some additional information specific to each period.
For example:
August 28 - August 30
Work Allocation - 100%
Type - Vacation
August 31 - September 1
Work Allocation - 75%
Type - Work
How would this be best implemented within my Resource class? I'm not sure in what type of data structure to store this (potentially) repeated information.
Thx.