Skip to content

alonecuzzo/ios-10k

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

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"   
}]