Im looking to hold pairs of data that I can recall and change at points in time within my code.
The two pieces of data are strings, one being a name and one being a time (formatted hh:MM:ss).
The times are triggers that scripts will run, the name being the script name in question.
Both of these values may be duplicate (scripts running more than once a day and different scripts running at the same time "trigger")
I've tried to use a Dictorionary but found it isnt fit for purpose as either/or of the pairs can be duplicate.
Would a better way of structuring this be a dictionary using the time as a key and List for the scripts that need to run at that time? Or is there an entirely better way of holding this kind of data that Im not aware of?