Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 639 Bytes

README.md

File metadata and controls

40 lines (31 loc) · 639 Bytes

ios-10k

10,000 hours to mastery! 10K tracks your habits, goals, activities or anything that you want. It's said that it takes 10,000 hours to achieve mastery in anything.

Entities

Task Entity

[ Task: {  
            title: "Task title",  
            index: 0,
            creationDate: NSDate,
            sessions: [
                Session, Session, Session...
            ],
            tags: [
                Tag, Tag, Tag...
            ]
}]

Session Entity

[ Session: {
   startDate: NSDate,
   endDate: NSDate 
}]

Tag Entity

[ Tag: {
    name: "health"   
}]